.about-img-responsive {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(196, 30, 58, 0.3);
    border: 3px solid var(--border-color);
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0.7rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about-img-responsive {
        max-width: 180px;
        margin: 0 auto;
    }
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 2rem;
        top: 1.2rem;
        z-index: 101;
        background: none;
        box-shadow: none;
    }
    nav ul {
        display: none;
    }
    nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--light-bg), var(--card-bg));
        padding: 1.5rem;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        display: block;
        padding: 1.2rem;
        border-bottom: 1px solid var(--border-color);
    }
}
/* Hero Flex Layout */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-content {
    flex: 1 1 0;
    text-align: left;
    max-width: 520px;
    margin: 0;
    position: relative;
    z-index: 2;
}
/* Bigger hero image section and image */
.hero-image-section {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 220px;
    max-height: 320px;
    height: 100%;
    overflow: visible;
}
.hero-image {
    max-width: 320px;
    width: 100%;
    height: 95%;
    max-height: 300px;
    object-fit: contain;
    margin: 0;
    border-radius: 18px;
    display: block;
}
/* Smaller hero image */
.hero-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 18px;
    display: block;
}
@media (max-width: 900px) {
    .hero-image {
        max-width: 160px;
    }
}
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 2.2rem;
        text-align: center;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-image-section {
        justify-content: center;
        min-width: 0;
        max-height: 200px;
    }
    .hero-image {
        max-width: 180px;
        max-height: 180px;
        height: 90%;
    }
}
:root {
    --primary-color: #C41E3A;
    --secondary-color: #2ECC71;
    --accent-color: #FFB84D;
    --dark-bg: #0D1117;
    --light-bg: #1C2128;
    --card-bg: #22272E;
    --text-light: #F0F0F0;
    --text-dark: #0D1117;
    --border-color: #3D444D;
    --success-color: #2ECC71;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--dark-bg) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

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

/* Logo Styling for all HTML files */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255,184,77,0.12) 0%, rgba(196,30,58,0.08) 100%);
    box-shadow: 0 2px 12px rgba(196,30,58,0.08);
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}
.logo:hover {
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 18px rgba(196,30,58,0.18);
}
    /* Redesigned Hero Section */
    .redesigned-hero {
        position: relative;
        background: linear-gradient(120deg, #ffb84d 0%, #c41e3a 60%, #2ecc71 100%);
        padding: 6rem 2rem 5rem 2rem;
        text-align: center;
        border-bottom: 2px solid var(--border-color);
        overflow: hidden;
    }
    .hero-bg-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    .hero-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.18;
        filter: blur(8px);
        animation: heroShapeMove 8s infinite alternate ease-in-out;
    }
    .hero-shape1 {
        width: 320px;
        height: 320px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        top: -80px;
        left: -80px;
        animation-delay: 0s;
    }
    .hero-shape2 {
        width: 220px;
        height: 220px;
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        bottom: -60px;
        right: 10%;
        animation-delay: 2s;
    }
    .hero-shape3 {
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        top: 30%;
        right: -60px;
        animation-delay: 1s;
    }
    @keyframes heroShapeMove {
        0% { transform: scale(1) translateY(0); }
        100% { transform: scale(1.1) translateY(30px); }
    }
    .hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        background: rgba(33, 33, 33, 0.18);
        border-radius: 30px;
        padding: 0.6rem 1.6rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 2.2rem;
        box-shadow: 0 2px 12px rgba(196, 30, 58, 0.12);
        letter-spacing: 1px;
    }
    .hero-icon {
        font-size: 2.2rem;
        filter: drop-shadow(0 0 6px var(--primary-color));
    }
    .hero-badge-text {
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1.5px;
    }
    .hero-title {
        font-size: 4.2rem;
        margin-bottom: 1.2rem;
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
    .hero-highlight {
        color: var(--secondary-color);
        background: none;
        -webkit-text-fill-color: var(--secondary-color);
        text-shadow: 0 2px 12px rgba(46, 204, 113, 0.18);
    }
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        color: var(--text-light);
        font-weight: 400;
        text-shadow: 0 1px 8px rgba(255, 184, 77, 0.12);
    }
    .hero-image {
        max-width: 850px;
        width: 100%;
        height: auto;
        margin: 2.5rem auto 2rem auto;
        border-radius: 18px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        display: block;
    }
    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        padding: 1.3rem 3.2rem;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 1.2rem;
    }
    .hero-btn-icon {
        font-size: 1.6rem;
        filter: drop-shadow(0 0 6px var(--accent-color));
    }
    .hero-btn:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 10px 35px rgba(196, 30, 58, 0.6);
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    }
.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--accent-color);
    background: rgba(196, 30, 58, 0.2);
}

nav ul li a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--border-color);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.6);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(80, 54, 13, 0.15));
    border: 2px solid var(--warning-color);
    border-left: 6px solid var(--danger-color);
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.3);
}

.disclaimer-box h3 {
    color: var(--warning-color);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.disclaimer-box p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.disclaimer-box ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.disclaimer-box ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--warning-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.game-btn {
    padding: 1rem 2.2rem;
    background: var(--card-bg);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-btn:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

.game-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    
    padding: 0.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--border-color);
}

.game-container iframe {
    width: 100%;
    height: auto;
    border: none;
     max-width: 900px;
     aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #000;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
        .about-section {
            padding: 2rem 0.7rem;
        }
        .about-content {
            gap: 1.2rem;
        }
        .about-image img {
            max-width: 180px;
            margin: 0 auto;
        }
        .about-text h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .about-text p {
            font-size: 0.95rem;
            margin-bottom: 0.7rem;
        }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(196, 30, 58, 0.3);
    border: 3px solid var(--border-color);
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
}

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

.features-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.feature-card p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 204, 113, 0.4);
    border-top-color: var(--accent-color);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.review-text {
    line-height: 1.9;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--light-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

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

.contact-info {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.info-icon {
    font-size: 2.5rem;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-section h1 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 12px;
    line-height: 2;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
}

.legal-content h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-content h3 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    padding: 4rem 2rem 1.5rem;
    border-top: 3px solid var(--primary-color);
    margin-top: 5rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 2;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(8px);
}

.footer-disclaimer {
    background: rgba(196, 30, 58, 0.15);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--danger-color);
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
    color: var(--text-light);
}

.footer-bottom p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--light-bg), var(--card-bg));
    padding: 3.5rem;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
    border: 3px solid var(--primary-color);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-120px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
}

.modal-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 2;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-confirm,
.btn-decline {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    color: #fff;
}

.btn-confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(46, 204, 113, 0.6);
}

.btn-decline {
    background: linear-gradient(135deg, var(--danger-color), var(--warning-color));
    color: #fff;
}

.btn-decline:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.6);
}

/* Scroll to Top Button */
/* Enhanced Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(120deg, #ffb84d 0%, #c41e3a 60%, #2ecc71 100%);
    border: 3px solid var(--accent-color);
    border-left: 10px solid var(--primary-color);
    padding: 2.5rem 2rem 2rem 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.25), 0 2px 24px rgba(46, 204, 113, 0.12);
    position: relative;
    overflow: hidden;
}
.vibrant-disclaimer .disclaimer-decor {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.18;
    pointer-events: none;
}
.vibrant-disclaimer .disclaimer-icon {
    font-size: 8rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 12px var(--primary-color));
}
.disclaimer-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.disclaimer-box p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 1.12rem;
    position: relative;
    z-index: 2;
}
.disclaimer-box ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}
.disclaimer-box ul li {
    margin-bottom: 0.7rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 0 1px 6px rgba(46, 204, 113, 0.15);
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--light-bg), var(--card-bg));
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        display: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .game-container iframe {
        height: auto;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
    }
}
