.disclaimer-card .cta-button {
    margin-top: 1rem;
}
/* Site Color Palette (updated for disclaimer redesign) */
:root {
    --primary-color: #6C5CE7;      /* Violet */
    --secondary-color: #00BFA6;    /* Teal */
    --accent-color: #FFD166;       /* Warm Yellow */
    --dark-bg: #0F1724;            /* deep navy */
    --light-bg: #F8FAFC;           /* off-white */
    --white: #FFFFFF;
    --text-primary: #0B1220;
    --text-secondary: #54606A;
    --border-color: #E6EAF0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .menu-list {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 1rem 0;
        gap: 0;
        display: none !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .menu-list.open {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
    }
    .header-container {
        position: relative;
    }
}

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

.site-brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.menu-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.menu-list a:hover,
.menu-list a.active {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Hero Banner */
.hero-banner {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(120deg, #6C5CE7 0%, #00BFA6 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-banner h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-banner p {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-placeholder {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    overflow: hidden;
}

.hero-img {
    max-width: 90%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    background: transparent;
    animation: floatHero 3.5s ease-in-out infinite;
}

@keyframes floatHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
    100% { transform: translateY(0); }
}


/* Call to Action Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #E64A19;
    transform: scale(1.05);
}

.cta-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Notice Box */
.notice-box {
    background-color: #FFF8E1;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    border-radius: 8px;
}

.notice-box h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.notice-box p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Interactive Game Section */
.interactive-section {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.interactive-section.standalone {
    margin-top: 7rem;
}

.interactive-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.game-embed {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Info Section */
.info-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFD166 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.info-content {
    position: relative;
    z-index: 1;
}

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

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.info-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.highlights-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.highlights-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-box {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-10px);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.highlight-box p {
    color: var(--text-secondary);
}

/* Page Footer */
.page-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-sections {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-nav li {
    margin-bottom: 0.7rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    text-align: center;
    color: #B0BEC5;
    font-size: 0.9rem;
}

/* Verification Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-container h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.popup-container p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.3rem;
    font-weight: bold;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}

/* Contact Form Styles */
.contact-container {
    margin-top: 7rem;
    padding: 3rem 2rem;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.form-wrapper h1 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Document Pages */
.legal-document {
    max-width: 850px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.legal-document h1 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-article {
    margin: 2rem 0;
}

.legal-article h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-article p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Redesigned Disclaimer Card */
.disclaimer-container {
    max-width: 900px;
    margin: 6rem auto 4rem;
    padding: 0 1rem;
}

.disclaimer-card {
    background: linear-gradient(135deg, rgba(108,92,231,0.95), rgba(0,191,166,0.95));
    color: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(12,18,32,0.35);
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.disclaimer-card h1 {
    margin: 0 0 0.25rem 0;
    font-size: 1.9rem;
    color: var(--white);
}

.disclaimer-sub {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.disclaimer-card-body {
    background: rgba(255,255,255,0.06);
    padding: 1rem;
    border-radius: 10px;
    color: rgba(255,255,255,0.95);
    font-size: 0.98rem;
    line-height: 1.6;
}

.legal-articles .legal-article {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 6px 18px rgba(12,18,32,0.06);
}

.legal-articles .legal-article h2 {
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

@media (max-width: 768px) {
    .disclaimer-card h1 { font-size: 1.6rem; }
    .disclaimer-card { padding: 1.25rem; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-list {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }

    .hero-placeholder {
        height: 200px;
    }

    .testimonials-wrapper,
    .highlights-grid {
        flex-direction: column;
    }

    .footer-sections {
        flex-direction: column;
        text-align: center;
    }
}