* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0d0d0d;
    color: #e5e5e5;
    line-height: 1.7;
}

/* Header */
.site-header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #10b981;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.site-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
}

.nav-item:hover {
    color: #10b981;
}

.nav-item.active {
    color: #f59e0b;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #10b981;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-box {
    max-width: 1300px;
    margin: 0 auto;
}

/* Welcome Hero */
.welcome-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 25px;
    margin-bottom: 4rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #c5c5c5;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 500;
}

/* About Platform */
.about-platform {
    margin-bottom: 4rem;
}

.about-platform .content-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.about-platform h2 {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 2rem;
}

.about-platform p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Key Info Section */
.key-info {
    margin-bottom: 4rem;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #10b981;
    font-weight: 700;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.info-block {
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-block.green-accent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: #10b981;
}

.info-block.gold-accent {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: #f59e0b;
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.block-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.info-block.gold-accent h3 {
    color: #f59e0b;
}

.info-block p {
    color: #c0c0c0;
    line-height: 1.8;
}

/* Featured Gameplay */
.featured-gameplay {
    margin-bottom: 4rem;
}

.gameplay-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
}

.game-wrapper {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #10b981;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 20px;
}

/* Platform Features */
.platform-features {
    margin-bottom: 4rem;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-color: #10b981;
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #b5b5b5;
    line-height: 1.7;
}

/* Responsibility Message */
.responsibility-message {
    margin-bottom: 4rem;
}

.responsibility-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    border: 2px solid #f59e0b;
    text-align: center;
}

.responsibility-banner h2 {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.responsibility-banner p {
    font-size: 1.15rem;
    color: #d0d0d0;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Banner */
.page-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 25px;
    margin-bottom: 3rem;
}

.page-banner h1 {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-text {
    font-size: 1.3rem;
    color: #c0c0c0;
}

/* Gameplay Guide */
.gameplay-guide {
    margin-bottom: 3rem;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    align-items: start;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-num {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #c0c0c0;
    line-height: 1.7;
}

/* Player Info */
.player-info {
    margin-top: 3rem;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.info-panel {
    background: rgba(16, 185, 129, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.info-panel h3 {
    font-size: 1.4rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.info-panel p {
    color: #c0c0c0;
    line-height: 1.7;
}

/* Legal Section */
.legal-section {
    margin-bottom: 3rem;
}

.legal-content {
    background: #1a1a1a;
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.legal-content h2 {
    font-size: 2rem;
    color: #10b981;
    margin: 2.5rem 0 1.2rem 0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #d0d0d0;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1.2rem 0 1.5rem 2.5rem;
    color: #d0d0d0;
}

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 2px solid #10b981;
    padding: 3.5rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-block h4 {
    color: #f59e0b;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-block p {
    color: #a5a5a5;
    line-height: 1.7;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block a {
    color: #a5a5a5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: #808080;
}

/* Age Check Overlay */
.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-dialog {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    border: 3px solid #10b981;
    box-shadow: 0 20px 70px rgba(16, 185, 129, 0.4);
}

.age-check-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.age-check-dialog h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.age-check-dialog p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-check-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.btn-confirm-age,
.btn-decline-age {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-confirm-age {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-confirm-age:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn-decline-age {
    background: rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline-age:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
    }

    .site-nav.active {
        left: 0;
    }

    .nav-item.active::after {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .game-embed {
        height: 500px;
    }

    .guide-step {
        flex-direction: column;
    }

    .age-check-dialog {
        margin: 20px;
        padding: 2.5rem;
    }

    .age-check-actions {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem;
    }
}
