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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
    color: #d1fae5;
    line-height: 1.6;
}

.top-header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid #10B981;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #d1fae5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #000;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: #10B981;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #064e3b, #022c22);
    border-left: 3px solid #10B981;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 2000;
}

.mobile-nav.open {
    right: 0;
}

.close-nav {
    background: #10B981;
    border: none;
    font-size: 2rem;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mobile-link {
    display: block;
    padding: 1rem;
    color: #d1fae5;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.mobile-link:hover {
    background: rgba(16, 185, 129, 0.2);
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 400px;
    margin-bottom: 4rem;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.2rem;
    color: #a7f3d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-decoration {
    position: relative;
    width: 300px;
    height: 300px;
}

.deco-circle {
    position: absolute;
    border: 3px solid #10B981;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.deco-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.deco-circle:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    opacity: 0.5;
    animation-delay: 1s;
}

.deco-circle:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    opacity: 0.7;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.about-platform {
    margin-bottom: 3rem;
}

.about-platform h2 {
    font-size: 2.2rem;
    color: #10B981;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.platform-intro {
    font-size: 1.1rem;
    color: #a7f3d0;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-box {
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid;
}

.value-box.green-box {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10B981;
}

.value-box.emerald-box {
    background: rgba(5, 150, 105, 0.1);
    border-color: #059669;
}

.value-box.jade-box {
    background: rgba(4, 120, 87, 0.1);
    border-color: #047857;
}

.value-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-box h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-box p {
    color: #a7f3d0;
    line-height: 1.8;
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #a7f3d0;
}

.game-display {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.4);
    border: 3px solid #10B981;
}

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

.platform-features {
    margin-bottom: 4rem;
}

.platform-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-box {
    background: rgba(16, 185, 129, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.feature-header h4 {
    color: #10B981;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-box p {
    color: #a7f3d0;
    line-height: 1.7;
}

.responsibility-section {
    background: rgba(16, 185, 129, 0.1);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #10B981;
    margin-bottom: 3rem;
}

.responsibility-section h2 {
    text-align: center;
    color: #10B981;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsibility-text p {
    text-align: center;
    color: #a7f3d0;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.pillar {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10B981;
}

.pillar strong {
    color: #10B981;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.verification-card {
    background: linear-gradient(135deg, #064e3b, #022c22);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #10B981;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.6);
}

.verify-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verification-card h2 {
    font-size: 2.2rem;
    color: #10B981;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.verification-card p {
    color: #a7f3d0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

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

.btn-yes {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #000;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.6);
}

.btn-no {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.btn-no:hover {
    background: rgba(239, 68, 68, 0.3);
}

.page-footer {
    background: rgba(0, 0, 0, 0.6);
    border-top: 3px solid #10B981;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-block h3 {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-block p {
    color: #a7f3d0;
    line-height: 1.7;
}

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

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

.footer-menu a {
    color: #a7f3d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #10B981;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.play-intro {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.play-intro h1 {
    font-size: 2.8rem;
    color: #10B981;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-subtitle {
    font-size: 1.3rem;
    color: #a7f3d0;
}

.instructions-panel {
    margin-bottom: 3rem;
}

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

.inst-card {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #10B981;
}

.inst-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.inst-card h3 {
    color: #10B981;
    margin-bottom: 1rem;
    font-weight: 700;
}

.inst-card p {
    color: #a7f3d0;
    line-height: 1.7;
}

.play-disclaimers {
    margin-top: 3rem;
    background: rgba(16, 185, 129, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #10B981;
}

.play-disclaimers h2 {
    text-align: center;
    color: #10B981;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.disc-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10B981;
}

.disc-card strong {
    color: #10B981;
    display: block;
    margin-bottom: 0.5rem;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.legal-date {
    text-align: center;
    color: #6ee7b7;
    margin-bottom: 3rem;
    font-style: italic;
}

.terms-block {
    background: rgba(16, 185, 129, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    margin-bottom: 2rem;
}

.terms-block h2 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-block p {
    color: #a7f3d0;
    line-height: 1.8;
}

.highlight-block {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #10B981;
    margin-bottom: 2rem;
}

.highlight-block h2 {
    color: #10B981;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight-block p {
    color: #d1fae5;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .nav-hamburger {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-decoration {
        width: 200px;
        height: 200px;
    }

    .game-embed {
        height: 450px;
    }

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

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