* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.site-header {
    background: linear-gradient(90deg, #0a0e27 0%, #1a1f3a 100%);
    border-bottom: 3px solid #00d4ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    max-width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d4ff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: #00d4ff;
    transition: 0.3s;
    border-radius: 3px;
}

.main-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link:hover::before {
    width: 100%;
}

.intro-banner {
    position: relative;
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.banner-lead {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.banner-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.critical-info {
    padding: 4rem 2rem;
    background: #0f1628;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-block {
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
    background: rgba(255, 255, 255, 0.03);
}

.info-block.red {
    border-left-color: #ff4757;
    background: rgba(255, 71, 87, 0.05);
}

.info-block.blue {
    border-left-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.info-block.yellow {
    border-left-color: #ffa502;
    background: rgba(255, 165, 2, 0.05);
}

.info-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.featured-game {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.game-header p {
    font-size: 1.3rem;
    color: #b0b0b0;
}

.game-embed {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.game-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #00d4ff;
}

.platform-info {
    padding: 4rem 2rem;
    background: #0f1628;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 3rem;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-col {
    text-align: center;
}

.col-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.info-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.how-to-play {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.step-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.transparency {
    padding: 4rem 2rem;
    background: #0f1628;
}

.transparency-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    color: #b0b0b0;
}

.site-footer {
    background: #000;
    border-top: 3px solid #00d4ff;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00d4ff;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: #808080;
    font-size: 0.95rem;
}

.age-gate {
    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-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

.gate-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.age-gate-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.gate-note {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #00d4ff;
    color: #000;
}

.btn-confirm:hover {
    background: #00a8cc;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.btn-deny {
    background: #555;
    color: #fff;
}

.btn-deny:hover {
    background: #777;
}

.play-intro {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    text-align: center;
}

.play-intro h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.play-lead {
    font-size: 1.4rem;
    color: #ffffff;
}

.play-area {
    padding: 3rem 2rem;
    background: #0a0e27;
}

.play-instructions {
    padding: 3rem 2rem;
    background: #0f1628;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.instruction-card h4 {
    font-size: 1.4rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.play-warnings {
    padding: 3rem 2rem;
    background: #0a0e27;
}

.warning-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 71, 87, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #ff4757;
}

.warning-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ff4757;
    margin-bottom: 1rem;
}

.warning-list {
    font-size: 1.1rem;
    line-height: 2;
    list-style-position: inside;
}

.legal-page {
    padding: 3rem 2rem;
    background: #0a0e27;
    min-height: 100vh;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 1rem;
}

.updated {
    text-align: center;
    font-style: italic;
    color: #808080;
    margin-bottom: 3rem;
}

.legal-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid #00d4ff;
}

.legal-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.legal-block h3 {
    font-size: 1.4rem;
    color: #00d4ff;
    margin: 1.5rem 0 0.8rem;
}

.legal-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.legal-block ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.warning-block {
    background: rgba(255, 71, 87, 0.1);
    border-left-color: #ff4757;
}

.large-warning {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .main-menu.open {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    }

    .header-wrap {
        padding: 1.2rem 1.5rem;
    }

    .banner-text h1 {
        font-size: 2.5rem;
    }

    .banner-lead {
        font-size: 1.2rem;
    }

    .banner-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-iframe {
        height: 500px;
    }

    .info-blocks {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .gate-buttons {
        flex-direction: column;
    }
}
