* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #c5d3e8;
    line-height: 1.7;
    min-height: 100vh;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(to bottom right, #1a1f3a, #2a2f4a);
    border: 3px solid #6b9bd1;
    border-radius: 25px;
    padding: 60px 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(107, 155, 209, 0.4);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-icon {
    font-size: 90px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #6b9bd1;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-gate-content p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #c5d3e8;
}

.age-buttons {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.age-btn {
    flex: 1;
    min-width: 180px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.age-btn.accept {
    background: linear-gradient(135deg, #6b9bd1 0%, #4a7fb8 100%);
    color: #0a0e27;
}

.age-btn.accept:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(107, 155, 209, 0.6);
}

.age-btn.decline {
    background: #3a3f5a;
    color: #c5d3e8;
}

.age-btn.decline:hover {
    background: #4a4f6a;
}

.site-header {
    background: rgba(10, 14, 39, 0.96);
    border-bottom: 3px solid #6b9bd1;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #6b9bd1;
    text-decoration: none;
}

.brand-icon {
    font-size: 40px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.toggle-bar {
    display: block;
    width: 32px;
    height: 4px;
    background: #6b9bd1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.main-nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #c5d3e8;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #6b9bd1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #6b9bd1;
}

.nav-link:hover::before {
    width: 100%;
}

.hero-section {
    position: relative;
    padding: 120px 35px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(107, 155, 209, 0.15) 0%, transparent 70%);
}

.stars-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, #6b9bd1, transparent),
                      radial-gradient(2px 2px at 60px 70px, #4a7fb8, transparent),
                      radial-gradient(1px 1px at 50px 50px, #c5d3e8, transparent),
                      radial-gradient(1px 1px at 130px 80px, #6b9bd1, transparent),
                      radial-gradient(2px 2px at 90px 10px, #4a7fb8, transparent);
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.4;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 68px;
    font-weight: 900;
    color: #6b9bd1;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(107, 155, 209, 0.6);
    letter-spacing: 2px;
}

.hero-text {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #c5d3e8;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(107, 155, 209, 0.2);
    border: 2px solid #6b9bd1;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 35px;
}

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #6b9bd1;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.intro-section {
    background: rgba(26, 31, 58, 0.5);
}

.intro-content p {
    font-size: 19px;
    margin-bottom: 28px;
    text-align: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.commitments-section {
    background: rgba(10, 14, 39, 0.7);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 55px;
}

.commitment-card {
    background: linear-gradient(to bottom, rgba(26, 31, 58, 0.9), rgba(42, 47, 74, 0.9));
    border: 2px solid #6b9bd1;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(107, 155, 209, 0.3);
}

.commitment-symbol {
    font-size: 55px;
    margin-bottom: 25px;
}

.commitment-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #6b9bd1;
    font-size: 24px;
    margin-bottom: 18px;
}

.commitment-card p {
    font-size: 16px;
    line-height: 1.7;
}

.gameplay-section {
    background: rgba(26, 31, 58, 0.5);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #000;
    border: 4px solid #6b9bd1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(107, 155, 209, 0.4);
}

.game-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    font-size: 16px;
}

.game-disclaimer a {
    color: #6b9bd1;
    text-decoration: underline;
}

.advantages-section {
    background: rgba(10, 14, 39, 0.7);
}

.advantages-list {
    margin-top: 55px;
}

.advantage-item {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin-bottom: 45px;
    padding: 35px;
    background: rgba(26, 31, 58, 0.6);
    border-left: 5px solid #6b9bd1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(42, 47, 74, 0.7);
}

.advantage-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #6b9bd1;
    opacity: 0.5;
    min-width: 80px;
}

.advantage-details h3 {
    font-family: 'Orbitron', sans-serif;
    color: #6b9bd1;
    font-size: 26px;
    margin-bottom: 15px;
}

.advantage-details p {
    font-size: 17px;
    line-height: 1.7;
}

.responsibility-section {
    background: rgba(26, 31, 58, 0.5);
}

.responsibility-text p {
    text-align: center;
    font-size: 18px;
    max-width: 950px;
    margin: 0 auto 25px;
}

.site-footer {
    background: rgba(10, 14, 39, 0.98);
    border-top: 3px solid #6b9bd1;
    padding: 60px 35px 35px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #6b9bd1;
    margin-bottom: 18px;
}

.footer-tagline {
    color: #c5d3e8;
    font-style: italic;
    margin-top: 15px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #6b9bd1;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c5d3e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6b9bd1;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(107, 155, 209, 0.3);
    color: #c5d3e8;
    font-size: 15px;
}

.play-main .play-intro {
    background: rgba(26, 31, 58, 0.5);
    padding: 70px 35px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
    color: #6b9bd1;
    text-align: center;
    margin-bottom: 25px;
}

.play-description {
    text-align: center;
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto;
}

.game-area {
    background: #000;
    padding: 0;
}

.fullscreen-game {
    width: 100%;
    height: 850px;
    position: relative;
}

.fullscreen-game iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-guidelines {
    background: rgba(10, 14, 39, 0.7);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.guideline-box {
    background: rgba(26, 31, 58, 0.7);
    border: 2px solid rgba(107, 155, 209, 0.4);
    border-radius: 15px;
    padding: 35px;
}

.guideline-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #6b9bd1;
    font-size: 22px;
    margin-bottom: 18px;
}

.guideline-box p {
    font-size: 16px;
    line-height: 1.7;
}

.legal-main {
    background: rgba(10, 14, 39, 0.9);
    min-height: 100vh;
}

.legal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 58px;
    color: #6b9bd1;
    text-align: center;
    margin-bottom: 25px;
}

.legal-date {
    text-align: center;
    font-style: italic;
    color: #6b9bd1;
    margin-bottom: 55px;
    font-size: 16px;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 55px;
}

.terms-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    color: #6b9bd1;
    margin-bottom: 22px;
}

.terms-section p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.terms-section ul {
    margin: 25px 0 25px 35px;
}

.terms-section li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.highlight-notice {
    background: rgba(107, 155, 209, 0.15);
    border: 3px solid #6b9bd1;
    border-radius: 18px;
    padding: 35px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        display: none;
        border-top: 3px solid #6b9bd1;
    }

    .main-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-text {
        font-size: 20px;
    }

    .section-heading {
        font-size: 38px;
    }

    .fullscreen-game {
        height: 550px;
    }

    .advantage-item {
        flex-direction: column;
        gap: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
