/* CSS Variables */
:root {
    --primary-color: #1F1300;
    --secondary-color: #F79421;
    --accent-color: #FF5E00;
    --text-light: #FFFFFF;
    --text-dark: #1F1300;
    --text-muted: #8A8A8A;
    --background-dark: #1A1200;
    --background-light: #FFF8F0;
    --warning-bg: #FFD580;
    --footer-bg: #F79421;
    --border-color: #E0C9A6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-dark);
    overflow-x: hidden;
    padding-top: 120px;
    /* Account for fixed header */
}

/* Warning Strip */
.warning-strip {
    background: var(--warning-bg);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.warning-strip p {
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.logo img {
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer Styles */
.footer {
    background: var(--footer-bg);
    color: var(--text-dark);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--text-dark);
}

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Disclaimer Header */
.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.disclaimer-icon {
    width: 30px;
    height: 30px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: var(--text-dark);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .warning-strip {
        font-size: 12px;
        padding: 6px 15px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        padding: 20px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 0;
    }

    .burger-menu {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .warning-strip {
        font-size: 11px;
        padding: 5px 10px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p {
        font-size: 13px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Content Styles */
.main-content {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Block 1: Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    color: var(--secondary-color);
    font-size: 5.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffed4e;
}

/* Block 2: About Us Section */
.about-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.85);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.about-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Block 3: Discover Section */
.discover-section {
    background: var(--background-light);
    padding: 100px 0;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.discover-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discover-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.discover-image:hover img {
    transform: scale(1.1);
}


.discover-text {}

.discover-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2;
}

.discover-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.discover-features h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 0;
}

.features-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.discover-cta {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

/* Block 4: Games Collection */
.games-section {
    background: var(--footer-bg);
    padding: 100px 0;
    color: var(--text-dark);
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.games-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.games-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
}

.game-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.game-content {
    padding: 25px;
    text-align: center;
}

.game-name {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.game-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.5;
}

.play-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.play-button:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: #ffed4e;
}

/* Block 5: Final CTA Section */
.final-cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.9);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 26, 46, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--text-dark);
    font-size: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Page Hero Section (for Our Games and Contact Us) */
.page-hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-hero-section .hero-overlay {
    background: rgba(26, 26, 46, 0.8);
}

.page-hero-section .hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-hero-section .hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-hero-section .hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Extended Games Section */
.extended-games-section {
    background: var(--background-light);
    padding: 100px 0;
}

.extended-games-section .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Contact Section */
.contact-section {
    background: var(--background-light);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.contact-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form-container {
    background: var(--primary-color);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.form-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffed4e;
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.form-success h4 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: bold;
}

.form-success p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Policy Pages Styles */
.policy-content-section {
    background: var(--background-light);
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-header h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.policy-header h4 {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

.policy-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.policy-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.policy-section {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.policy-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section h5 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-section p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.policy-section li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Design for All Blocks */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
    }

    .title-line.highlight {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    /* About Section */
    .section-title {
        font-size: 2rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Discover Section */
    .discover-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .discover-title {
        font-size: 2rem;
    }

    .discover-description {
        font-size: 1rem;
    }

    /* Games Section */
    .games-title {
        font-size: 2.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    /* Final CTA */
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-content {
        padding: 40px 20px;
    }

    /* Page Hero Sections */
    .page-hero-section .hero-title {
        font-size: 3rem;
    }

    .page-hero-section .hero-subtitle {
        font-size: 1.5rem;
    }

    .page-hero-section .hero-description {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-container {
        padding: 40px 30px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .title-line.highlight {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* About Section */
    .section-title {
        font-size: 1.8rem;
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Discover Section */
    .discover-title {
        font-size: 1.8rem;
    }

    .discover-features h3 {
        font-size: 1.1rem;
    }

    /* Games Section */
    .games-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        margin-bottom: 20px;
    }

    /* Final CTA */
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 30px 15px;
    }

    /* Page Hero Sections */
    .page-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .page-hero-section .hero-subtitle {
        font-size: 1.3rem;
    }

    .page-hero-section .hero-description {
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-description {
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Policy Pages */
    .policy-content {
        padding: 30px 20px;
    }

    .policy-header h3 {
        font-size: 1.8rem;
    }

    .policy-header h4 {
        font-size: 1rem;
    }

    .policy-section h5 {
        font-size: 1.1rem;
    }

    .policy-section {
        padding: 15px;
    }

    .policy-section li {
        font-size: 0.95rem;
    }

    /* Policy Pages */
    .policy-content {
        padding: 40px 30px;
    }

    .policy-header h3 {
        font-size: 2rem;
    }

    .policy-header h4 {
        font-size: 1.1rem;
    }

    .policy-section h5 {
        font-size: 1.2rem;
    }

    .policy-section {
        padding: 20px;
    }
}

/* Disable background-attachment: fixed on mobile for better performance */
@media (max-width: 768px) {

    .hero-section,
    .about-section,
    .final-cta-section {
        background-attachment: scroll;
    }
}