* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0b0d1a;
    color: #e6e9f0;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(75, 0, 130, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at top right, rgba(0, 51, 102, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(138, 43, 226, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cosmic-nav {
    background: linear-gradient(135deg, #1a1b3d, #0f1729);
    border-bottom: 2px solid #6a5acd;
    box-shadow: 0 5px 30px rgba(106, 90, 205, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.brand-text {
    font-family: 'Audiowide', cursive;
    font-size: 2.2rem;
    color: #b19cd9;
    text-shadow: 0 0 20px rgba(177, 156, 217, 0.8);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 0.8rem;
}

.link-item {
    color: #e6e9f0;
    text-decoration: none;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-item:hover,
.link-item.current {
    color: #b19cd9;
    border-color: #6a5acd;
    background: rgba(106, 90, 205, 0.15);
    box-shadow: 0 0 15px rgba(106, 90, 205, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #b19cd9;
    border-radius: 3px;
    transition: all 0.3s ease;
}

main {
    position: relative;
    z-index: 1;
}

.stellar-hero {
    background: linear-gradient(135deg, #1a1b3d 0%, #2d1b69 50%, #1a1b3d 100%);
    padding: 5rem 2.5rem;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cosmic-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.8rem;
    color: #b19cd9;
    text-shadow: 0 0 30px rgba(177, 156, 217, 0.8), 0 0 60px rgba(106, 90, 205, 0.4);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cosmic-subtitle {
    font-size: 1.3rem;
    color: #d0d0e0;
    max-width: 950px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(106, 90, 205, 0.2);
    border: 2px solid #6a5acd;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(106, 90, 205, 0.3);
}

.section-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.section-header {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: #b19cd9;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(177, 156, 217, 0.6);
}

.about-nebula {
    background: linear-gradient(to bottom, #0f1729, #1a1b3d);
    position: relative;
}

.nebula-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d0d0e0;
    margin-bottom: 1.5rem;
}

.game-constellation {
    background: linear-gradient(to bottom, #1a1b3d, #0f1729);
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    color: #d0d0e0;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.game-portal {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #6a5acd;
    box-shadow: 0 0 40px rgba(106, 90, 205, 0.5);
    margin-bottom: 2rem;
}

.portal-view {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-warning {
    background: rgba(218, 165, 32, 0.15);
    border: 2px solid #daa520;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #daa520;
}

.cosmic-advantages {
    background: #0b0d1a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-panel {
    background: linear-gradient(135deg, #1a1b3d, #2d1b69);
    border: 2px solid rgba(106, 90, 205, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.advantage-panel:hover {
    transform: translateY(-15px);
    border-color: #6a5acd;
    box-shadow: 0 15px 50px rgba(106, 90, 205, 0.5);
}

.panel-symbol {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.panel-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.9rem;
    color: #b19cd9;
    margin-bottom: 1rem;
}

.panel-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0d0;
}

.critical-alerts {
    background: linear-gradient(to bottom, #1a1b3d, #0f1729);
}

.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.alert-module {
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
}

.alert-module.blue-theme {
    background: rgba(30, 144, 255, 0.1);
    border-color: #1e90ff;
}

.alert-module.purple-theme {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.alert-module.green-theme {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
}

.alert-module h3 {
    font-size: 1.6rem;
    color: #b19cd9;
    margin-bottom: 1rem;
}

.alert-module p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0d0;
}

.cosmic-footer {
    background: linear-gradient(to top, #000000, #0f1729);
    border-top: 3px solid #6a5acd;
    padding: 3rem 2.5rem 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.col-heading {
    font-family: 'Audiowide', cursive;
    font-size: 1.6rem;
    color: #b19cd9;
    margin-bottom: 1rem;
}

.col-text {
    color: #c0c0d0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.col-links {
    list-style: none;
}

.col-links li {
    margin-bottom: 0.7rem;
}

.col-links a {
    color: #e6e9f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.col-links a:hover {
    color: #b19cd9;
    text-decoration: underline;
}

.footer-signature {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(106, 90, 205, 0.4);
    color: #808090;
    font-size: 0.95rem;
}

.verify-screen {
    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;
}

.verify-panel {
    background: linear-gradient(135deg, #1a1b3d, #2d1b69);
    border: 4px solid #6a5acd;
    border-radius: 20px;
    padding: 3rem;
    max-width: 580px;
    text-align: center;
    box-shadow: 0 0 60px rgba(106, 90, 205, 0.6);
}

.verify-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.verify-heading {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: #b19cd9;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(177, 156, 217, 0.8);
}

.verify-info {
    font-size: 1.15rem;
    color: #e6e9f0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.verify-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.verify-btn-yes,
.verify-btn-no {
    padding: 1.2rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verify-btn-yes {
    background: #2ecc71;
    border-color: #27ae60;
    color: #fff;
}

.verify-btn-yes:hover {
    background: #27ae60;
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.6);
    transform: scale(1.05);
}

.verify-btn-no {
    background: #e74c3c;
    border-color: #c0392b;
    color: #fff;
}

.verify-btn-no:hover {
    background: #c0392b;
    box-shadow: 0 0 25px rgba(231, 76, 60, 0.6);
    transform: scale(1.05);
}

.legal-space {
    background: linear-gradient(to bottom, #0f1729, #1a1b3d);
    min-height: 60vh;
}

.legal-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
    color: #b19cd9;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(177, 156, 217, 0.6);
}

.legal-timestamp {
    text-align: center;
    color: #808090;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-text h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    color: #b19cd9;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text p,
.legal-text ul {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #c0c0d0;
    margin-bottom: 1.2rem;
}

.legal-text ul {
    margin-left: 2rem;
}

.legal-text a {
    color: #b19cd9;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.play-banner {
    background: linear-gradient(135deg, #1a1b3d, #2d1b69);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-bottom: 3px solid #6a5acd;
}

.banner-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
    color: #b19cd9;
    text-shadow: 0 0 25px rgba(177, 156, 217, 0.8);
    margin-bottom: 1rem;
}

.banner-description {
    font-size: 1.25rem;
    color: #d0d0e0;
    max-width: 850px;
    margin: 0 auto;
}

.play-interface {
    background: #0b0d1a;
}

.interface-guide {
    background: rgba(106, 90, 205, 0.1);
    border: 2px solid rgba(106, 90, 205, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.guide-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    color: #b19cd9;
    margin-bottom: 1rem;
}

.interface-guide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0d0;
    margin-bottom: 1rem;
}

.interface-screen {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #6a5acd;
    box-shadow: 0 0 40px rgba(106, 90, 205, 0.5);
}

.screen-display {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1b3d, #2d1b69);
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s ease;
        border-top: 2px solid #6a5acd;
        box-shadow: 0 5px 30px rgba(106, 90, 205, 0.4);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-wrapper {
        padding: 1rem 1.5rem;
    }

    .cosmic-title {
        font-size: 2.3rem;
    }

    .cosmic-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-wrap {
        padding: 3rem 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .portal-view {
        height: 450px;
    }

    .screen-display {
        height: 550px;
    }

    .verify-panel {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .verify-btn-yes,
    .verify-btn-no {
        width: 100%;
    }
}
