@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700&family=Russo+One&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --star-black: #050508;
    --star-navy: #0a0a18;
    --star-blue: #101030;
    --star-red: #dc2626;
    --star-orange: #f97316;
    --star-silver: #e2e8f0;
    --star-cyan: #22d3ee;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Oxanium', sans-serif;
    background: var(--star-black);
    color: var(--star-silver);
    min-height: 100vh;
    line-height: 1.7;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.95);
    border-bottom: 2px solid var(--star-red);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1700px;
    margin: 0 auto;
}

.brand {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--star-red);
    text-decoration: none;
    letter-spacing: 3px;
}

.brand span { color: var(--star-cyan); }

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: var(--star-silver);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover { color: var(--star-red); }

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 26px;
    height: 2px;
    background: var(--star-red);
    transition: 0.3s;
}

.menu-icon.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.menu-icon.active span:nth-child(2) { opacity: 0; }
.menu-icon.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

.main { padding-top: 80px; }

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--star-black) 0%, var(--star-navy) 50%, var(--star-blue) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-text { max-width: 700px; position: relative; z-index: 2; }

.hero-text h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span { color: var(--star-red); }

.hero-text .subtitle {
    font-size: 1.2rem;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.action-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--star-red), var(--star-orange));
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.info-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-badge {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid var(--star-red);
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
    color: var(--star-orange);
}

.game-section {
    padding: 5rem 3rem;
    background: var(--star-navy);
}

.section-heading {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--star-cyan);
}

.game-frame {
    max-width: 920px;
    margin: 0 auto;
    background: var(--star-black);
    padding: 1.5rem;
    border: 2px solid var(--star-red);
}

.game-frame iframe {
    width: 100%;
    height: 560px;
    border: none;
}

.features {
    padding: 6rem 3rem;
    background: var(--star-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: var(--star-navy);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--star-red);
    transition: transform 0.3s;
}

.feature-box:hover { transform: translateY(-5px); }

.feature-box .ico { font-size: 2.5rem; margin-bottom: 1rem; }

.feature-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: var(--star-red);
    margin-bottom: 0.8rem;
}

.feature-box p {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
}

.about {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--star-navy) 0%, var(--star-black) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--star-orange);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.footer {
    background: var(--star-black);
    padding: 4rem 3rem;
    border-top: 2px solid var(--star-red);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--star-red);
    margin-bottom: 2rem;
}

.resources h4 {
    font-size: 0.9rem;
    color: var(--star-cyan);
    margin-bottom: 1rem;
}

.resources-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.resources-links a {
    color: rgba(226, 232, 240, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resources-links a:hover { color: var(--star-red); }

.footer-note {
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.5);
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-gate.hidden { display: none; }

.age-box {
    background: var(--star-navy);
    padding: 3.5rem;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--star-red);
}

.age-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--star-red);
    margin-bottom: 1.5rem;
}

.age-box p {
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--star-red), var(--star-orange));
    color: #fff;
}

.age-btn.no {
    background: transparent;
    border: 1px solid var(--star-silver);
    color: var(--star-silver);
}

.age-btn:hover { transform: scale(1.05); }

.page-section {
    padding: 6rem 3rem 4rem;
    min-height: calc(100vh - 200px);
}

.page-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--star-navy);
    padding: 3rem;
    border-left: 4px solid var(--star-red);
}

.page-box h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--star-red);
    margin-bottom: 2rem;
}

.page-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: var(--star-cyan);
    margin: 2.5rem 0 1rem;
}

.page-box p {
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-box ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(226, 232, 240, 0.85);
}

.page-box li { margin-bottom: 0.6rem; }

.notice-box {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--star-red);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-icon { display: flex; }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 8, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .nav.active { transform: translateX(0); }
    .header-container { padding: 1rem 1.5rem; }
    .hero { padding: 3rem 1.5rem; }
    .hero-text h1 { font-size: 2.3rem; }
    .info-badges { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .game-section, .features, .about, .footer, .page-section { padding: 3rem 1.5rem; }
    .page-box { padding: 2rem 1.5rem; }
    .game-frame iframe { height: 400px; }
}
