* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 60px 50px;
    border-radius: 12px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.age-icon {
    font-size: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px #d4af37);
}

.age-modal-box h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 2px;
}

.age-modal-box p {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.8;
    color: #b8b8b8;
}

.age-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-buttons button {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
}

.btn-confirm:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-deny {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
}

.btn-deny:hover {
    background: #ff4444;
    color: white;
    transform: translateY(-2px);
}

.site-header {
    background: #0d0d0d;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 3px;
}

.brand-icon {
    font-size: 42px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger .bar {
    width: 32px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.content {
    padding-top: 0;
}

.hero-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-section h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #d4af37;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.subtitle {
    font-size: 20px;
    max-width: 850px;
    margin: 0 auto 45px;
    color: #b8b8b8;
    line-height: 1.8;
}

.badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-game {
    padding: 80px 0;
    background: #0a0a0a;
}

.featured-game h2 {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #d4af37;
    letter-spacing: 2px;
}

.game-frame {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    background: #000;
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    display: block;
    border: none;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(145deg, #d4af37, #b8941f);
    color: #0a0a0a;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.features {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 45px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #d4af37;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.important-notices {
    padding: 80px 0;
    background: #0a0a0a;
}

.important-notices h2 {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #d4af37;
    letter-spacing: 2px;
}

.notice-grid {
    display: grid;
    gap: 35px;
}

.notice-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.notice-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d4af37;
    letter-spacing: 1px;
}

.notice-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.platform-stats {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.platform-stats h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 2px;
}

.stats-intro {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 55px;
    color: #b8b8b8;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 45px;
    border-radius: 12px;
    border: 2px solid #d4af37;
}

.stat-value {
    font-size: 52px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 17px;
    color: #b8b8b8;
    letter-spacing: 1px;
}

.site-footer {
    background: #0d0d0d;
    border-top: 2px solid #d4af37;
    margin-top: 0;
    padding: 60px 50px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 20px;
    color: #b8b8b8;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #b8941f;
}

.footer-bar {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.play-intro {
    padding: 80px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.play-intro h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 2px;
}

.play-intro p {
    font-size: 19px;
    max-width: 750px;
    margin: 0 auto;
    color: #b8b8b8;
    line-height: 1.8;
}

.game-details {
    padding: 80px 0;
    background: #0a0a0a;
}

.game-details h2 {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #d4af37;
    letter-spacing: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.detail-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 45px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.detail-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.detail-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #d4af37;
    letter-spacing: 1px;
}

.detail-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.legal-page {
    padding: 80px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.legal-page h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #d4af37;
    letter-spacing: 2px;
}

.legal-date {
    font-size: 15px;
    color: #b8b8b8;
    font-style: italic;
}

.legal-body {
    padding: 80px 0;
    background: #0a0a0a;
}

.legal-body .container {
    max-width: 1000px;
}

.legal-block {
    margin-bottom: 50px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 45px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
}

.legal-block h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #b8b8b8;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .site-header .container {
        padding: 20px 25px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 85px);
        background: #0d0d0d;
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        border-left: 2px solid #d4af37;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 17px;
    }

    .game-frame iframe {
        height: 500px;
    }

    .features .container {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
