* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cosmic-blue: #1e3a8a;
    --deep-purple: #4c1d95;
    --gold-accent: #fbbf24;
    --space-dark: #0f172a;
    --space-darker: #020617;
    --card-blue: #1e293b;
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, var(--space-darker) 0%, var(--space-dark) 100%);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* Stars Background */
.stars-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 10px, #fff, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Verify Overlay */
.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-overlay.show {
    display: flex;
}

.verify-box {
    background: var(--card-blue);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold-accent);
}

.verify-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, var(--gold-accent), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 60px 70px, var(--gold-accent), rgba(0,0,0,0));
    background-size: 100px 100px;
    opacity: 0.2;
    pointer-events: none;
}

.comet-icon {
    font-size: 90px;
    margin-bottom: 30px;
}

.verify-box h1 {
    color: var(--gold-accent);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.verify-message {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.verify-box h2 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.verify-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.verify-btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.verify-btn.accept {
    background: linear-gradient(135deg, var(--cosmic-blue), var(--deep-purple));
    color: var(--text-white);
    border: 2px solid var(--gold-accent);
}

.verify-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.verify-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.verify-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Top Bar */
.top-bar {
    background: var(--space-darker);
    border-bottom: 2px solid var(--gold-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-orb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--deep-purple));
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-accent);
}

.logo-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.top-nav {
    display: flex;
    gap: 10px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--gold-accent);
    background: rgba(251, 191, 36, 0.1);
}

.nav-item.current {
    color: var(--space-darker);
    background: var(--gold-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 32px;
    height: 3px;
    background: var(--gold-accent);
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 100px 30px;
    text-align: center;
    overflow: hidden;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold-accent), #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 24px;
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 80px 30px;
    text-align: center;
    overflow: hidden;
}

.header-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold-accent);
    position: relative;
    z-index: 1;
}

.header-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

/* Message Grid */
.message-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.message-box {
    background: var(--card-blue);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid;
}

.message-box.cosmic-blue {
    border-color: var(--cosmic-blue);
}

.message-box.cosmic-purple {
    border-color: var(--deep-purple);
}

.message-box.cosmic-gold {
    border-color: var(--gold-accent);
}

.msg-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.message-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 18px;
}

.message-box p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 16px;
}

/* Story Section */
.story-section {
    background: var(--card-blue);
    padding: 70px 60px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid var(--gold-accent);
}

.cosmic-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 35px;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

/* Game Spotlight */
.game-spotlight {
    background: var(--card-blue);
    padding: 70px 60px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid var(--cosmic-blue);
}

.game-intro {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.game-display {
    width: 100%;
    height: 700px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid var(--gold-accent);
}

.game-display iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info {
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
}

/* Highlights Section */
.highlights-section {
    margin: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.highlight-card {
    background: var(--card-blue);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.hl-symbol {
    font-size: 58px;
    margin-bottom: 25px;
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Numbers Banner */
.numbers-banner {
    background: linear-gradient(135deg, var(--cosmic-blue), var(--deep-purple));
    padding: 70px 40px;
    border-radius: 25px;
    margin: 60px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    border: 2px solid var(--gold-accent);
}

.number-box {
    text-align: center;
}

.num-value {
    font-size: 64px;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.num-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
}

/* Instructions Area */
.instructions-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.instruction-box {
    background: var(--card-blue);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid var(--cosmic-blue);
}

.instruction-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.instruction-box p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Tips Area */
.tips-area {
    background: var(--card-blue);
    padding: 70px 60px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid var(--gold-accent);
}

.tips-wrapper {
    margin-top: 35px;
}

.cosmic-list {
    list-style: none;
    padding: 0;
}

.cosmic-list li {
    padding: 18px 0 18px 50px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cosmic-list li:last-child {
    border-bottom: none;
}

.cosmic-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-size: 26px;
}

/* Document Section */
.document-section {
    background: var(--card-blue);
    padding: 70px 60px;
    border-radius: 20px;
    margin: 60px 0;
    border: 2px solid var(--gold-accent);
}

.document-section h2 {
    color: var(--gold-accent);
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 25px;
}

.document-section h2:first-child {
    margin-top: 0;
}

.document-section p, .document-section ul {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 22px;
}

.document-section ul {
    margin-left: 35px;
}

.document-section li {
    margin-bottom: 14px;
}

.document-section a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.timestamp {
    margin-top: 50px;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Notice Panels */
.notice-panel {
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 35px;
    border-left: 5px solid;
}

.notice-panel.critical {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.notice-panel.informational {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.notice-panel.positive {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.notice-panel.regulatory {
    background: rgba(107, 114, 128, 0.1);
    border-color: #6b7280;
}

.notice-panel.supportive {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--gold-accent);
}

.notice-panel.technical {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.notice-panel.final-notice {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(76, 29, 149, 0.2));
    border-color: var(--gold-accent);
}

.notice-panel h2 {
    margin-top: 0 !important;
}

/* Bottom Section */
.bottom-section {
    background: var(--space-darker);
    border-top: 2px solid var(--gold-accent);
    padding: 70px 30px 35px;
    text-align: center;
}

.bottom-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 25px;
}

.bottom-text {
    max-width: 800px;
    margin: 0 auto 35px;
    color: var(--text-muted);
    line-height: 1.8;
}

.bottom-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.bottom-links a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 16px;
}

.bottom-links a:hover {
    color: #fde047;
}

.bottom-credit {
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--space-darker);
        flex-direction: column;
        border-bottom: 2px solid var(--gold-accent);
        padding: 25px;
    }

    .top-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 44px;
    }

    .header-title {
        font-size: 38px;
    }

    .cosmic-heading {
        font-size: 32px;
    }

    .story-section, .game-spotlight, .tips-area, .document-section {
        padding: 50px 30px;
    }

    .game-display {
        height: 500px;
    }

    .message-grid, .highlights-grid, .instructions-area {
        grid-template-columns: 1fr;
    }

    .numbers-banner {
        flex-direction: column;
        gap: 35px;
    }
}
