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

:root {
    --emerald: #059669;
    --teal: #0d9488;
    --jade: #10b981;
    --mint: #6ee7b7;
    --forest: #064e3b;
    --light-bg: #f0fdf4;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-medium: #6b7280;
    --border-green: #d1fae5;
    --shadow-green: rgba(5, 150, 105, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
}

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navigation-bar {
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 4px 20px var(--shadow-green);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    width: 55px;
    height: 55px;
}

.site-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.link-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.link-item.current {
    background: var(--jade);
    color: var(--forest);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--jade);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.page-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.welcome-banner {
    background: linear-gradient(135deg, var(--emerald), var(--jade));
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px var(--shadow-green);
    border: 3px solid var(--mint);
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.banner-text {
    font-size: 1.3rem;
    color: white;
    line-height: 1.9;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 2.5rem;
}

.banner-highlights {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-pill {
    background: white;
    color: var(--emerald);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald);
    text-align: center;
    margin-bottom: 2rem;
}

.information-blocks {
    margin-bottom: 4rem;
}

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

.info-block {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px var(--shadow-green);
    border-left: 6px solid;
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
}

.emerald-accent {
    border-left-color: var(--emerald);
}

.teal-accent {
    border-left-color: var(--teal);
}

.jade-accent {
    border-left-color: var(--jade);
}

.block-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.block-title {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.block-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.gaming-showcase {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 8px 24px var(--shadow-green);
    border: 2px solid var(--border-green);
}

.showcase-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.game-window {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 4px solid var(--emerald);
    box-shadow: 0 8px 24px var(--shadow-green);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-information {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--border-green);
}

.info-heading {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-left: 4px solid var(--jade);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item strong {
    color: var(--emerald);
}

.benefits-showcase {
    margin-bottom: 4rem;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow-green);
    border-top: 4px solid var(--emerald);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px var(--shadow-green);
}

.benefit-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-heading {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.platform-narrative {
    background: linear-gradient(135deg, white, var(--light-bg));
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 4rem;
    border: 3px solid var(--jade);
    box-shadow: 0 10px 40px var(--shadow-green);
}

.narrative-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.site-footer {
    background: linear-gradient(135deg, var(--forest), var(--emerald));
    color: white;
    padding: 3.5rem;
    margin-top: auto;
}

.footer-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--mint);
}

.footer-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

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

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

.resource-links a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-links a:hover {
    color: var(--mint);
    transform: translateX(8px);
}

.verification-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.verification-screen.hidden {
    display: none;
}

.verification-card {
    background: linear-gradient(135deg, white, var(--light-bg));
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 4px solid var(--emerald);
}

.verification-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.verification-title {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.verification-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.requirements-panel {
    background: var(--light-bg);
    border: 2px solid var(--jade);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.requirement {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.requirement:last-child {
    margin-bottom: 0;
}

.verification-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.action-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.primary-action {
    background: linear-gradient(135deg, var(--emerald), var(--jade));
    color: white;
}

.primary-action:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--shadow-green);
}

.secondary-action {
    background: var(--text-medium);
    color: white;
}

.secondary-action:hover {
    background: #dc2626;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--teal);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-text {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-embed {
        height: 450px;
    }

    .page-content {
        padding: 2rem 1rem;
    }

    .welcome-banner {
        padding: 2.5rem 1.5rem;
    }

    .verification-card {
        margin: 1rem;
        padding: 2rem;
    }

    .verification-actions {
        flex-direction: column;
    }

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