:root {
    --primary-sand: #d4a574;
    --deep-gold: #c49b63;
    --midnight-blue: #1a237e;
    --desert-orange: #ff6f00;
    --pharaoh-purple: #4a148c;
    --ancient-bronze: #8d6e63;
    --mystic-teal: #00695c;
    --shadow-grey: #424242;
    --pearl-white: #fafafa;
    --text-primary: #212121;
    --text-secondary: #757575;
    --accent-red: #d32f2f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--pearl-white);
    overflow-x: hidden;
}

.container, .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 1140px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-3, .col-lg-4, .col-lg-6, .col-lg-7,
.col-md-6, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

.navigation-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.brand-logo img {
    height: 45px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--deep-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.disclaimer-banner {
    background: linear-gradient(135deg, var(--pharaoh-purple), var(--midnight-blue));
    color: white;
    padding: 8px 0;
    margin-top: 75px;
    text-align: center;
    font-size: 14px;
}

.disclaimer-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.banner-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddc7 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.banner-area .banner-bg {
    width: 100%;
    height: 640px;
    background: linear-gradient(45deg, var(--primary-sand), var(--deep-gold));
    background-image: url("../agora/gaming_achievement_unlock_celebration_3.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.banner-area .banner-text {
    padding: 0 47% 0 5%;
}

.banner-area .banner-text h1 {
    color: var(--text-primary);
    font-family: "Cinzel", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-area .banner-text h1 span {
    color: var(--deep-gold);
    position: relative;
}

.game-notice {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-label, .age-label, .free-label {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-label {
    background: var(--mystic-teal);
    color: white;
}

.age-label {
    background: var(--accent-red);
    color: white;
}

.free-label {
    background: var(--desert-orange);
    color: white;
}

.banner-area .banner-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin: 30px 0;
}

.secondary-btn {
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-sand), var(--deep-gold));
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.secondary-btn:hover {
    color: var(--deep-gold);
    background: transparent;
    border-color: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 155, 99, 0.3);
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.secondary-btn:hover .btn-icon {
    transform: translateX(4px);
}

.experience-showcase {
    padding: 7em 0;
    background: white;
}

.heading-section {
    position: relative;
    z-index: 0;
}

.heading-section .subheading {
    font-size: 48px;
    display: block;
    margin-bottom: 0;
    font-family: "Cinzel", serif;
    color: var(--deep-gold);
    line-height: 1;
    margin-bottom: -18px;
    z-index: 1;
    position: relative;
}

.heading-section h2 {
    z-index: -1;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    font-family: "Cinzel", serif;
    color: var(--text-primary);
    line-height: 1.3;
}

.text-image-content {
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.sub-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn.btn-primary {
    background: var(--deep-gold);
    border: 2px solid var(--deep-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    background: transparent;
    color: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.3);
}

.stats-counter {
    overflow-x: hidden;
    position: relative;
    padding: 5em 0;
    background: linear-gradient(135deg, var(--midnight-blue), var(--pharaoh-purple));
    color: white;
}

.counter-block {
    display: block;
    width: 100%;
}

.counter-content {
    position: relative;
}

.counter-content .stat-number {
    line-height: 1;
    font-weight: 700;
    font-size: 48px;
    color: var(--primary-sand);
    display: block;
    margin-bottom: 15px;
    font-family: "Cinzel", serif;
}

.counter-content span {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    letter-spacing: 1px;
}

.cards-section {
    padding: 125px 0;
    background: var(--pearl-white);
}

.main_title {
    text-align: center;
    margin-bottom: 80px;
}

.main_title h2 {
    font-family: "Cinzel", serif;
    font-size: 46px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main_title p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 720px;
    margin: auto;
}

.card-item {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
    background: white;
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.card-img {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.card-item:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 32px 28px;
    background: white;
}

.card-body h4 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 18px;
    transition: all 0.3s ease;
    font-family: "Cinzel", serif;
    font-weight: 600;
    line-height: 1.4;
}

.card-body p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.card-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.card-btn:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-gold);
    transition: all 0.3s ease;
}

.card-btn:hover {
    color: var(--deep-gold);
    text-decoration: none;
}

.card-btn:hover:after {
    width: 100%;
}

.testimony-section {
    position: relative;
    padding: 7em 0;
    background: linear-gradient(135deg, var(--shadow-grey), #2c2c2c);
}

.heading-section-white .subheading {
    color: var(--primary-sand);
}

.heading-section-white h2 {
    color: white;
}

.testimonial-container {
    display: flex;
    justify-content: center;
}

.testimonial-item {
    max-width: 800px;
    width: 100%;
}

.testimony-wrap {
    display: block;
    position: relative;
    padding: 40px 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--midnight-blue), var(--pharaoh-purple));
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.testimony-wrap:after {
    position: absolute;
    bottom: -5px;
    left: 5px;
    right: 5px;
    content: '';
    height: 5px;
    background: var(--primary-sand);
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
}

.testimony-wrap .icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.testimony-wrap .icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-sand);
    opacity: 0.7;
}

.testimony-wrap .user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid var(--primary-sand);
}

.testimony-wrap .name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-family: "Cinzel", serif;
}

.testimony-wrap .position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.about-section {
    padding: 7em 0;
    background: white;
}

.about-section .heading {
    font-size: 48px;
    font-family: "Cinzel", serif;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-section .lead {
    font-size: 22px;
    font-weight: 400;
    color: var(--deep-gold);
    margin-bottom: 25px;
    font-style: italic;
}

.about-section p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.play-button {
    color: var(--deep-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.play-button:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--midnight-blue), var(--pharaoh-purple));
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer .footer-heading {
    font-size: 18px;
    color: white;
    margin-bottom: 32px;
    font-family: "Cinzel", serif;
    font-weight: 600;
}

.footer .footer-heading span {
    border-bottom: 2px solid var(--primary-sand);
    padding-bottom: 4px;
}

.footer-logo {
    max-height: 80px;
    filter: brightness(0) invert(1);
    width: auto;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-sand);
    text-decoration: none;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 14px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    padding-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.copyright a {
    color: var(--primary-sand);
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 25px;
        font-size: 18px;
        color: var(--text-primary);
        width: 100%;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .banner-area .banner-text {
        padding: 0 5%;
        text-align: center;
    }

    .banner-area .banner-bg {
        height: 400px;
        margin-bottom: 40px;
    }

    .banner-area .banner-text h1 {
        font-size: 36px;
    }

    .heading-section h2 {
        font-size: 32px;
    }

    .heading-section .subheading {
        font-size: 36px;
    }

    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-7,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .text-md-right {
        text-align: center !important;
    }

    .pr-md-5, .pl-md-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mt-lg-4 {
        margin-top: 0 !important;
    }

    .counter-content .stat-number {
        font-size: 36px;
    }

    .main_title h2 {
        font-size: 36px;
    }

    .about-section .heading {
        font-size: 36px;
    }

    .about-section .lead {
        font-size: 18px;
    }

    .stats-counter .counter-block {
        margin-bottom: 2.5rem;
    }

    .experience-showcase,
    .cards-section,
    .testimony-section,
    .about-section {
        padding: 4em 0;
    }

    .game-notice {
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .banner-area .banner-bg {
        height: 300px;
    }

    .banner-area .banner-text h1 {
        font-size: 28px;
    }

    .heading-section h2 {
        font-size: 28px;
    }

    .main_title h2 {
        font-size: 28px;
    }

    .about-section .heading {
        font-size: 28px;
    }

    .counter-content .stat-number {
        font-size: 32px;
    }

    .card-body {
        padding: 25px 20px;
    }

    .testimony-wrap {
        padding: 30px 20px;
    }
}

.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.d-flex { display: flex !important; }
.text-center { text-align: center !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.ml-auto { margin-left: auto !important; }
.order-lg-1 { order: 1; }
.order-lg-2 { order: 2; }
.img-fluid { max-width: 100%; height: auto; }
.list-unstyled { list-style: none; padding-left: 0; }
.text-white { color: white !important; }

.footer-regulators {
    margin: 40px 0 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.regulator-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.regulator-title {
    color: var(--primary-sand);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: "Cinzel", serif;
}

.regulator-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.regulator-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.regulator-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.regulator-logo {
    width: 142px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.regulator-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.age-verification-badge {
    display: flex;
    justify-content: flex-end;
}

.age-badge {
    background: linear-gradient(135deg, var(--accent-red), #b71c1c);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.age-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    font-family: "Cinzel", serif;
}

.age-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--midnight-blue), var(--pharaoh-purple));
    border-top: 3px solid var(--primary-sand);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-sand);
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cookie-btn.accept {
    background: var(--primary-sand);
    color: var(--text-primary);
}

.cookie-btn.accept:hover {
    background: var(--deep-gold);
    transform: translateY(-1px);
}

.cookie-btn.learn-more {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    backdrop-filter: blur(5px);
}

.age-popup-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-sand);
}

.age-popup-header {
    margin-bottom: 25px;
}

.age-icon {
    margin-bottom: 20px;
}

.age-symbol {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red), #b71c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: "Cinzel", serif;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.age-popup-header h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: "Cinzel", serif;
}

.age-popup-body {
    margin-bottom: 30px;
}

.age-popup-body p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-confirm-btn {
    background: linear-gradient(135deg, var(--primary-sand), var(--deep-gold));
    color: var(--text-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .regulator-links {
        justify-content: center;
    }

    .age-verification-badge {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-regulators {
        text-align: center;
    }

    .regulator-section {
        align-items: center;
    }

    .age-popup-content {
        padding: 30px 20px;
    }
}

/* Game Page Styles */
.disclaimer-section {
    padding: 100px 0 50px 0;
    background: linear-gradient(135deg, var(--primary-sand), var(--deep-gold));
    text-align: center;
}

.disclaimer-section h2 {
    color: var(--text-primary);
    font-family: "Cinzel", serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.disclaimer-section p {
    color: var(--text-primary);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.game-main-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e, #4a148c);
    min-height: 80vh;
}

.game-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.game-header h1 {
    color: var(--primary-sand);
    font-family: "Cinzel", serif;
    font-size: 32px;
    margin: 0;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid var(--deep-gold);
}

.balance-label, .points-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.balance-amount {
    color: var(--primary-sand);
    font-size: 24px;
    font-weight: 700;
    font-family: "Cinzel", serif;
    min-width: 80px;
    text-align: center;
}

.slot-machine {
    margin-bottom: 30px;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid var(--deep-gold);
}

.reel {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reel.spinning {
    animation: spinReel 1.5s ease-in-out;
}

@keyframes spinReel {
    0% { transform: translateY(0); }
    50% { transform: translateY(-100px); opacity: 0.5; }
    100% { transform: translateY(0); }
}

.symbol {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-sand), var(--deep-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.symbol img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.symbol.winning {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: winningPulse 1s ease-in-out infinite;
}

@keyframes winningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.bet-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bet-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid var(--deep-gold);
}

.bet-btn {
    background: var(--deep-gold);
    color: var(--text-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover:not(:disabled) {
    background: var(--primary-sand);
    transform: scale(1.1);
}

.bet-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bet-amount {
    color: var(--primary-sand);
    font-size: 20px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    font-family: "Cinzel", serif;
}

.spin-button {
    background: linear-gradient(135deg, var(--accent-red), #b71c1c);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.result-display {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    display: none;
    transition: all 0.3s ease;
}

.result-display.win {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border: 2px solid #4caf50;
}

.result-display.lose {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border: 2px solid #f44336;
}

.result-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Cinzel", serif;
}

.win-amount {
    color: #ffd700;
    font-size: 24px;
    font-weight: 700;
    font-family: "Cinzel", serif;
}

.achievements-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    height: fit-content;
}

.achievements-panel h3 {
    color: var(--primary-sand);
    font-family: "Cinzel", serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-item.unlocked {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.achievement-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.achievement-info h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.achievement-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.achievement-status {
    color: var(--primary-sand);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.achievement-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1003;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.achievement-notification.show {
    transform: translateX(0);
}

.notification-content {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #4caf50;
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .game-header {
        flex-direction: column;
        text-align: center;
    }

    .game-header h1 {
        font-size: 24px;
    }

    .slot-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        padding: 15px;
    }

    .symbol {
        width: 60px;
        height: 60px;
    }

    .symbol img {
        width: 45px;
        height: 45px;
    }

    .game-controls {
        flex-direction: column;
        align-items: center;
    }

    .spin-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .balance-display {
        flex-wrap: wrap;
        justify-content: center;
    }

    .achievements-panel {
        margin-top: 30px;
    }
}