/*
Theme Name: Play Suipi
Description: A modern WordPress theme for Play Suipi card game website featuring hero backgrounds, crazy purple branding, and mobile-responsive design.
Version: 1.0
Author: Awoiiyah Tech Team
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-size: 16px; /* Base font size for desktop */
}

body {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

ul {
    margin-left: 3rem !important;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    
}

.nav-container {
    max-width: 978px;
    margin: 0 auto;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-s {
    width: 40px;
    height: 40px;
    background-image: url('assets/images/Slogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-text {
    color: #333;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: #F2B705;
    background-color: rgba(255,255,255,0.1);
}

.nav-menu a.active {
    color: #F2B705;
    font-weight: 600;
    background-color: rgba(255,255,255,0.15);
}

.site-header.scrolled .nav-menu a {
    color: #333;
}

.site-header.scrolled .nav-menu a:hover {
    color: #F2B705;
    background-color: rgba(0,0,0,0.1);
}

.site-header.scrolled .nav-menu a.active {
    color: #F2B705;
    font-weight: 600;
    background-color: rgba(0,0,0,0.15);
}

.download-btn-nav {
    background: #F2B705 !important;
    color: #1a1a1a !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.download-btn-nav:hover {
    background: #F2B705 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: #333;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Sheet */
.mobile-menu-sheet {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu-sheet.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.mobile-logo .logo-s {
    width: 35px;
    height: 35px;
    background-image: url('assets/images/Slogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navigation {
    padding: 2rem 1.5rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #F2B705;
}

.mobile-nav-menu a.active {
    color: #F2B705;
    font-weight: 600;
}

.mobile-download-btn {
    background: #F2B705 !important;
    color: #1a1a1a !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-weight: 600 !important;
    border: none !important;
    margin-top: 1rem !important;
}

.mobile-download-btn:hover {
    background: #F2B705 !important;
    color: #1a1a1a !important;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: #8B0000; /* Dark red background */
    background-image: 
        url('assets/images/hero-bg.png'),
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.05) 10px,
            rgba(255, 215, 0, 0.05) 20px
        );
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 10rem 0 0 0;
    margin-bottom: 0;
    max-height: 600px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    overflow: visible;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 978px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    flex: 1;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-mobile-only {
    display: none;
}

.download-btn {
    background: #2c2c2c;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.download-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.play-now-btn {
    background: #F2B705 !important;
    color: #1a1a1a !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3) !important;
    text-decoration: none !important;
    display: inline-block !important;
	width:80% !important;
	text-align: center;
}

.play-now-btn:hover {
    background: #F2B705 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(242, 183, 5, 0.4) !important;
    color: #1a1a1a !important;
}

.coming-soon-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
	white-space: nowrap;
}

.coming-soon-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.coming-soon-btn svg {
    flex-shrink: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    padding-bottom: 0;
    bottom: 36px;
}

.hero-feature-img {
    max-width: 75%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Games Section */
.games-section {
    padding: 2rem 2rem;
    background: white;
    margin: 2rem 0;
    border-radius: 10px;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.game-text {
    flex: 1;
}

.game-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.game-content p {
    color: #666;
    margin-bottom: 0;
}

.game-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #666;
    padding: 0.75rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.game-card:hover .game-link-btn {
    border-color: #999;
    color: #333;
    transform: translateX(2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
    padding: 2rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content {
    flex: 1;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
	align-items:center;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
	width:80% !important;
    justify-content: center;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-btn svg {
    flex-shrink: 0;
}

/* WP Article Section */
.wp-article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    background: white;
    margin: 2rem 0;
    border-radius: 10px;
}

.wp-article img {
    height: 30px;
    margin-bottom: 1rem;
}

.wp-article p {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.wp-article a {
    color: #2E3192;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wp-article a:hover {
    color: #F2B705;
}

/* About Section */
.about-section {
    padding: 2rem 2rem;
    background: #f8f9fa;
    margin: 2rem 0;
    border-radius: 10px;
}


.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Page Template Styles */
.page-header {
    background: #8B0000; /* Dark red background */
    background-image: 
        url('assets/images/hero-bg.png'),
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.05) 10px,
            rgba(255, 215, 0, 0.05) 20px
        );
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 0;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 1rem;
    background: white;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs a {
    color: #2E3192;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.main-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.main-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #444;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.main-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.3;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.content-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2E3192;
}

.content-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #555;
}

.page-cta {
    background: linear-gradient(135deg, #8B0000 0%, #5C0000 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.page-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.page-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.page-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta .cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.page-cta .cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-cta .cta-btn svg {
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: #4F0802;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-s {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section h4 {
    margin: 1rem 0 0.5rem 0;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F2B705;
}

.play-web-link {
    text-decoration: underline !important;
}

.social-link {
    display: inline-block;
    margin-top: 0.5rem;
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: #F2B705;
}

.download-app-btn {
    display: inline-block;
    background: #F2B705;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.download-app-btn:hover {
    background: #F2B705;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #F2B705;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E3192;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2E3192 0%, #1a1a5e 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.3);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2E3192;
}

.contact-icon {
    margin-right: 1rem;
    color: #2E3192;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #555;
}

.contact-details a {
    color: #2E3192;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-feature-img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }
    
    .logo-text {
        display: none; /* Hide "PLAY $UIPI" text on mobile, keep only the S logo */
    }
    
    .main-navigation {
        display: none; /* Hide desktop nav on mobile */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    html {
        font-size: 14px; /* Base font size for mobile */
    }
    
    .hero-section {
        padding: 6rem 0;
        min-height: auto;
        margin: 0 -1rem; /* Negative margin to break out of container padding */
        border-radius: 0; /* Remove border radius on mobile for full width */
        max-width: none; /* Remove max-width constraint on mobile */
        max-height: none; /* Remove max-height constraint on mobile */
    }
    
    .cta-section {
        margin: 2rem -1rem; /* Break out of container padding on mobile */
        border-radius: 0; /* Remove border radius on mobile */
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
        margin: 0 auto;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-mobile-only {
        display: block;
        width: 100%;
        margin: 2rem 0;
        text-align: center;
    }
    
    .hero-image-mobile-only img {
        width: 60%;
        height: auto;
        max-width: 400px;
    }
    
    .hero-feature-img {
        max-height: 350px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .games-section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 8rem 0 3rem 0;
		margin: 0 -1rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 1rem;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.5rem;
    }
    
    .main-content h4 {
        font-size: 1.2rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .page-cta {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .page-cta h3 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .contact-method {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        margin-right: 0.75rem;
    }
    
    .contact-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature-img {
        max-height: 300px;
    }
    
    .page-header {
        padding: 7rem 0 2rem 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .breadcrumbs {
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

.bitnami-corner-image {
	display:none;
}