@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Saira:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --star-yellow: #fbbf24;
    --star-orange: #f97316;
    --cosmic-blue: #1e3a5f;
    --deep-blue: #0c1929;
    --midnight: #050d18;
    --silver: #e2e8f0;
    --steel: #94a3b8;
}

body {
    font-family: 'Saira', sans-serif;
    background: var(--midnight);
    color: var(--silver);
    line-height: 1.75;
}

/* Age Verification */
.age-verify {
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 24, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-box {
    background: var(--deep-blue);
    border: 2px solid var(--star-yellow);
    padding: 50px;
    max-width: 460px;
    text-align: center;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.verify-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--star-yellow);
    margin-bottom: 20px;
}

.verify-box p {
    color: var(--steel);
    margin-bottom: 30px;
}

.verify-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.verify-btn {
    padding: 14px 40px;
    font-family: 'Russo One', sans-serif;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.verify-btn.enter {
    background: var(--star-yellow);
    color: var(--midnight);
}

.verify-btn.enter:hover {
    background: var(--star-orange);
}

.verify-btn.exit {
    background: transparent;
    border: 2px solid var(--steel);
    color: var(--steel);
}

.verify-btn.exit:hover {
    border-color: var(--star-orange);
    color: var(--star-orange);
}

/* Header */
.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--deep-blue);
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.7rem;
    color: var(--star-yellow);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--star-yellow);
}

/* Hamburger */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 26px;
    height: 2px;
    background: var(--star-yellow);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-blue);
    padding: 25px 30px;
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    color: var(--silver);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 30px 80px;
    background: 
        linear-gradient(135deg, transparent 49%, rgba(251, 191, 36, 0.05) 50%, transparent 51%),
        linear-gradient(45deg, transparent 49%, rgba(251, 191, 36, 0.05) 50%, transparent 51%),
        var(--midnight);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    color: var(--star-yellow);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-text p {
    color: var(--steel);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.vector-btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--star-yellow);
    color: var(--midnight);
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    transition: all 0.3s;
}

.vector-btn:hover {
    background: var(--star-orange);
    transform: translateX(5px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-graphic {
    width: 300px;
    height: 300px;
    position: relative;
}

/* Info Cards */
.info-row {
    padding: 80px 30px;
    background: var(--deep-blue);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-tile {
    background: var(--cosmic-blue);
    padding: 40px 30px;
    text-align: center;
    border-left: 4px solid var(--star-yellow);
}

.info-tile .tile-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-tile h3 {
    font-family: 'Russo One', sans-serif;
    color: var(--star-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-tile p {
    color: var(--steel);
    font-size: 0.95rem;
}

/* Game Area */
.game-area {
    padding: 80px 30px;
    background: var(--midnight);
}

.game-area h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--star-yellow);
    text-align: center;
    margin-bottom: 45px;
}

.game-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--deep-blue);
    padding: 12px;
    border: 2px solid var(--star-yellow);
}

.game-box iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Content */
.content-area {
    padding: 80px 30px;
    background: var(--cosmic-blue);
}

.content-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrap h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--star-yellow);
    margin-bottom: 25px;
}

.content-wrap p {
    color: var(--steel);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Features */
.features-area {
    padding: 80px 30px;
    background: var(--deep-blue);
}

.features-row {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--cosmic-blue);
    border-top: 3px solid var(--star-yellow);
}

.feature-box .f-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-box h3 {
    font-family: 'Russo One', sans-serif;
    color: var(--silver);
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--steel);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--midnight);
    padding: 55px 30px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.footer-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrap > p {
    color: var(--steel);
    margin-bottom: 25px;
}

.safe-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.safe-links a {
    color: var(--star-yellow);
    text-decoration: none;
    transition: color 0.3s;
}

.safe-links a:hover {
    color: var(--star-orange);
}

.footer-copy {
    padding-top: 20px;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    color: var(--steel);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Page Styles */
.page-top {
    padding: 140px 30px 60px;
    background: var(--deep-blue);
    text-align: center;
}

.page-top h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem;
    color: var(--star-yellow);
}

.page-body {
    padding: 60px 30px;
    background: var(--cosmic-blue);
}

.page-body .inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-body h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: var(--star-yellow);
    margin: 35px 0 15px;
}

.page-body p {
    color: var(--steel);
    margin-bottom: 15px;
}

.page-body ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-body ul li {
    color: var(--steel);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.page-body ul li::before {
    content: '★';
    color: var(--star-yellow);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .game-box iframe {
        height: 420px;
    }
    
    .safe-links {
        flex-direction: column;
        gap: 12px;
    }
}
