* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom right, #f1f8f4 0%, #e8f5e9 100%);
    color: #1b5e20;
    line-height: 1.7;
    min-height: 100vh;
}

.verification-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(27, 94, 32, 0.96);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.verification-overlay.active {
    display: flex;
}

.verification-container {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(46, 125, 50, 0.4);
    border: 3px solid #FFD700;
}

.modal-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #2E7D32;
}

.modal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.modal-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1b5e20;
}

.modal-subtext {
    font-size: 0.95rem;
    color: #558b2f;
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-accept {
    background: linear-gradient(135deg, #2E7D32 0%, #1b5e20 100%);
    color: white;
}

.modal-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.4);
}

.modal-decline {
    background: linear-gradient(135deg, #757575 0%, #616161 100%);
    color: white;
}

.modal-decline:hover {
    transform: translateY(-3px);
}

.page-header {
    background: linear-gradient(to right, #2E7D32 0%, #1b5e20 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-svg {
    width: 45px;
    height: 45px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #FFD700;
}

.nav-item:hover::after {
    width: 100%;
}

.hero-banner {
    background: linear-gradient(135deg, #2E7D32 0%, #1b5e20 50%, #2E7D32 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 4px solid #FFD700;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.4rem;
    color: #c8e6c9;
    margin-bottom: 3rem;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 215, 0, 0.15);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    border: 2px solid #FFD700;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}

.welcome-section, .benefits-section, .disclosure-section, .gameplay-section, .values-section, .callout-section {
    padding: 4.5rem 2rem;
}

.content-container {
    max-width: 1250px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #2E7D32;
    text-align: center;
    margin-bottom: 2rem;
}

.section-lead {
    font-size: 1.3rem;
    text-align: center;
    color: #388e3c;
    font-weight: 600;
    margin-bottom: 2.5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #558b2f;
    margin-bottom: 2.5rem;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2e4533;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #c8e6c9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 1.05rem;
    color: #2e4533;
}

.disclosure-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
}

.disclosure-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E7D32;
    text-align: center;
    margin-bottom: 2.5rem;
}

.disclosure-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.disclosure-entry {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #2E7D32;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.entry-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 0.75rem;
}

.entry-description {
    font-size: 1.05rem;
    color: #2e4533;
    line-height: 1.6;
}

.game-container {
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #2E7D32;
    background: #000;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.game-frame {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

.game-information {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #c8e6c9;
}

.info-symbol {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-heading {
    font-family: 'Playfair Display', serif;
    color: #2E7D32;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.values-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.values-column {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #c8e6c9;
}

.column-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.callout-box {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2E7D32 0%, #1b5e20 100%);
    border-radius: 12px;
    border: 3px solid #FFD700;
    box-shadow: 0 12px 36px rgba(46, 125, 50, 0.3);
}

.callout-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.callout-text {
    font-size: 1.3rem;
    color: #c8e6c9;
    margin-bottom: 2.5rem;
}

.callout-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1b5e20;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.callout-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.page-footer {
    background: linear-gradient(to bottom, #1b5e20 0%, #0d3818 100%);
    padding: 3.5rem 2rem;
    border-top: 3px solid #FFD700;
    margin-top: 4rem;
    color: #c8e6c9;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #c8e6c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-legal {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #81c784;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .header-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, #2E7D32 0%, #1b5e20 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-top: 3px solid #FFD700;
    }

    .header-navigation.show {
        display: flex;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .values-layout {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .verification-container {
        padding: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
