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

body {
    font-family: 'Inter', sans-serif;
    background: #0a1f1a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(4, 120, 87, 0.1) 0%, transparent 50%);
    color: #d1fae5;
    min-height: 100vh;
    line-height: 1.6;
}

.site-header {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 500;
}

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

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

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

.site-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #34D399;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.nav-active::after {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border-bottom: 3px solid #10B981;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: #34D399;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #6EE7B7;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #a7f3d0;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.visual-card {
    background: rgba(16, 185, 129, 0.15);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.visual-card:hover {
    border-color: #34D399;
    transform: translateY(-5px);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visual-card span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6EE7B7;
}

.content-section {
    padding: 4rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block {
    background: rgba(4, 120, 87, 0.2);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.intro-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    margin-bottom: 1.5rem;
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #a7f3d0;
    margin-bottom: 1.5rem;
}

.pillars-section {
    margin-bottom: 4rem;
}

.pillars-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    text-align: center;
    margin-bottom: 3rem;
}

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

.pillar-box {
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.pillar-box.pillar-red {
    background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
}

.pillar-box.pillar-green {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.pillar-box.pillar-orange {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
}

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

.pillar-emoji {
    font-size: 3rem;
}

.pillar-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: white;
}

.pillar-box p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

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

.game-showcase-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    text-align: center;
    margin-bottom: 1rem;
}

.showcase-lead {
    text-align: center;
    font-size: 1.2rem;
    color: #a7f3d0;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto 2rem;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    border: 3px solid #10B981;
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-caption {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10B981;
    border-radius: 8px;
}

.game-caption p {
    color: #a7f3d0;
    line-height: 1.7;
}

.advantages-section {
    margin-bottom: 4rem;
}

.advantages-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    text-align: center;
    margin-bottom: 3rem;
}

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

.advantage-item {
    background: rgba(4, 120, 87, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.advantage-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(52, 211, 153, 0.3);
    margin-bottom: 1rem;
}

.advantage-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #34D399;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #a7f3d0;
    line-height: 1.7;
}

.virtual-currency-explainer {
    margin-bottom: 4rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.virtual-currency-explainer h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    margin-bottom: 2rem;
    text-align: center;
}

.explainer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a7f3d0;
    margin-bottom: 1.5rem;
}

.responsibility-section {
    margin-bottom: 4rem;
}

.responsibility-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    margin-bottom: 2rem;
    text-align: center;
}

.responsibility-text {
    max-width: 900px;
    margin: 0 auto;
}

.responsibility-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a7f3d0;
    margin-bottom: 1.5rem;
}

.responsibility-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.responsibility-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #a7f3d0;
    line-height: 1.7;
}

.responsibility-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.3rem;
}

.page-heading {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: rgba(4, 120, 87, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.page-heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: #34D399;
    margin-bottom: 0.5rem;
}

.page-heading p {
    font-size: 1.2rem;
    color: #6EE7B7;
}

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

.instructions-area h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    text-align: center;
    margin-bottom: 2rem;
}

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

.instruction-box {
    background: rgba(4, 120, 87, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instruction-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #34D399;
    margin-bottom: 1rem;
}

.instruction-box p {
    color: #a7f3d0;
    line-height: 1.6;
}

.game-display-area {
    margin-bottom: 3rem;
}

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

.game-embed-box iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.technical-specs {
    margin-bottom: 3rem;
}

.technical-specs h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    text-align: center;
    margin-bottom: 2rem;
}

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

.spec-box {
    background: rgba(4, 120, 87, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spec-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #34D399;
    margin-bottom: 1rem;
}

.spec-box p {
    color: #a7f3d0;
    line-height: 1.6;
}

.play-reminders {
    max-width: 900px;
    margin: 0 auto;
}

.play-reminders h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #34D399;
    margin-bottom: 2rem;
    text-align: center;
}

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

.reminders-box ul {
    list-style: none;
    padding: 0;
}

.reminders-box li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #a7f3d0;
    line-height: 1.7;
}

.reminders-box li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #10B981;
    font-size: 1.5rem;
}

.legal-text {
    background: rgba(4, 120, 87, 0.15);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.legal-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #34D399;
    margin: 2.5rem 0 1rem 0;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    line-height: 1.8;
    color: #a7f3d0;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    color: #a7f3d0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.disclaimer-alert {
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.disclaimer-alert.important {
    background: rgba(198, 40, 40, 0.2);
    border: 2px solid #dc2626;
}

.disclaimer-alert.confirm {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10B981;
}

.disclaimer-alert h3 {
    margin-top: 0 !important;
}

.site-footer {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.footer-block h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #6EE7B7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.age-check-overlay.hidden {
    display: none;
}

.age-check-box {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(16, 185, 129, 0.5);
    border: 3px solid #10B981;
}

.age-check-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.age-check-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.age-check-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.age-btn {
    padding: 1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-accept {
    background: #10B981;
    color: white;
}

.age-btn-accept:hover {
    background: #059669;
    transform: scale(1.05);
}

.age-btn-reject {
    background: #991b1b;
    color: white;
}

.age-btn-reject:hover {
    background: #7f1d1d;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #047857 0%, #059669 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .page-heading h2 {
        font-size: 2.5rem;
    }
    
    .game-frame iframe,
    .game-embed-box iframe {
        height: 400px;
    }
    
    .age-check-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-check-buttons {
        flex-direction: column;
    }
}
