/* $MOONI — Full Hype Website */
:root {
    --bg: #09090b;
    --bg-2: #111113;
    --bg-3: #18181b;
    --surface: #1e1e22;
    --border: #27272a;
    --border-light: #3f3f46;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --orange: #ff6b35;
    --orange-hover: #ff8c5a;
    --orange-dim: rgba(255, 107, 53, .15);
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, .1);
    --red: #ef4444;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Stars */
.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1px 1px at 5% 8%, rgba(255,255,255,.6) 50%, transparent),
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,.5) 50%, transparent),
        radial-gradient(1px 1px at 25% 50%, rgba(255,255,255,.4) 50%, transparent),
        radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,.5) 50%, transparent),
        radial-gradient(1px 1px at 45% 65%, rgba(255,255,255,.4) 50%, transparent),
        radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,.5) 50%, transparent),
        radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,.4) 50%, transparent),
        radial-gradient(1px 1px at 75% 20%, rgba(255,255,255,.5) 50%, transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,.4) 50%, transparent),
        radial-gradient(1px 1px at 95% 40%, rgba(255,255,255,.5) 50%, transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: .8rem;
    font-weight: 500;
    transition: all .2s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: #000;
    border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); }

.btn-glow {
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(255, 107, 53, .4);
}
.btn-glow:hover { box-shadow: 0 0 30px rgba(255, 107, 53, .6); }

.btn-copy-ca {
    background: var(--bg-3);
    color: var(--text);
    border-color: var(--border);
}
.btn-copy-ca:hover { border-color: var(--orange); }

.btn-copy {
    background: var(--orange);
    color: #000;
    border: none;
    padding: 8px 16px;
    font-size: .75rem;
}
.btn-copy:hover { background: var(--orange-hover); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover { border-color: var(--text); }

.btn-full { width: 100%; justify-content: center; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(9, 9, 11, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-container { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--green-dim);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 24px;
    letter-spacing: .04em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.title-line { display: block; }
.title-accent { display: block; color: var(--orange); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--mono);
}

.stat-label {
    font-size: .75rem;
    color: var(--text-dim);
    font-family: var(--mono);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, .15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-image {
    width: 350px;
    height: 350px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Ticker */
.ticker {
    background: var(--orange);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    font-family: var(--mono);
    font-size: .85rem;
    font-weight: 600;
    color: #000;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--orange-dim);
    border: 1px solid rgba(255, 107, 53, .3);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: .04em;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.highlight { color: var(--orange); }

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About */
.about { background: var(--bg-2); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: border-color .2s;
}
.about-card:hover { border-color: var(--orange); }


.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 12px;
}


.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-card p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* Game Section */
.game-section { background: var(--bg); }

.game-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-info, .game-rewards, .game-wallet {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.game-info h3, .game-rewards h3, .game-wallet h3 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--orange);
}

.game-info ul {
    list-style: none;
    font-size: .85rem;
    color: var(--text-muted);
}

.game-info li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.game-info li:last-child { border: none; }

.reward-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .8rem;
}
.reward-item:last-child { border: none; }

.reward-rank { font-weight: 600; }
.reward-amount { color: var(--orange); font-family: var(--mono); }

.game-wallet p {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.game-main {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.game-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: .85rem;
}

.game-score span:first-child { color: var(--text-muted); }
.game-score span:last-child { color: var(--orange); font-weight: 700; }
.game-lives span:first-child { color: var(--text-muted); }
.game-high span:first-child { color: var(--text-muted); }

#game-canvas {
    width: 100%;
    height: 400px;
    background: #0a0a0f;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.game-controls {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.game-over {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(9, 9, 11, .95);
    border-radius: 8px;
}

.game-over h2 {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 12px;
}

.game-over p {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

#new-high {
    color: var(--gold);
    font-weight: 700;
}

/* Airdrop */
.airdrop { background: var(--bg-2); }
.airdrop-coming {
    text-align: center;
    padding: 60px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
    animation: float 3s ease-in-out infinite;
    border-radius: 16px;
}

.airdrop-coming h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.airdrop-coming p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.coming-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.airdrop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.airdrop-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all .2s;
}
.airdrop-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.airdrop-card.main-card { border-color: var(--orange); }

.airdrop-icon { font-size: 2rem; margin-bottom: 12px; }

.airdrop-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.airdrop-amount {
    font-family: var(--mono);
    font-size: .85rem;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.airdrop-card p {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.airdrop-progress {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.airdrop-progress h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.progress-bar {
    height: 12px;
    background: var(--bg);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff8c5a);
    border-radius: 999px;
    transition: width .5s;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: .75rem;
    color: var(--text-muted);
}

.leaderboard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.leaderboard h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 8px;
    font-size: .85rem;
}

.leaderboard-item.gold { border-left: 3px solid var(--gold); }
.leaderboard-item.silver { border-left: 3px solid var(--silver); }
.leaderboard-item.bronze { border-left: 3px solid var(--bronze); }

.lb-rank {
    width: 40px;
    font-family: var(--mono);
    font-weight: 600;
    color: var(--orange);
}

.lb-name { flex: 1; font-weight: 500; }

.lb-score {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--green);
}

/* Tokenomics */
.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.token-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}
.token-card.highlight-card { border-color: var(--orange); }

.token-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--orange);
    margin-bottom: 8px;
}

.token-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.token-card p {
    color: var(--text-muted);
    font-size: .9rem;
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
}

.contract-label {
    font-family: var(--mono);
    font-size: .75rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.contract-address {
    flex: 1;
    font-family: var(--mono);
    font-size: .85rem;
    color: var(--text-muted);
    word-break: break-all;
}

/* Roadmap */
.roadmap { background: var(--bg-2); }

.roadmap-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    border-color: var(--orange);
    background: var(--orange);
}

.timeline-content { flex: 1; }

.timeline-phase {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: .04em;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 4px 0 12px;
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-content li {
    color: var(--text-muted);
    font-size: .9rem;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* Meme Kit */
.memes { background: var(--bg); }

.meme-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.meme-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all .2s;
    display: block;
}
.meme-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.meme-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
}

.meme-label {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--orange);
}

/* Community */
.community { background: var(--bg-2); }

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all .2s;
    display: block;
}
.social-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.social-icon { font-size: 2rem; margin-bottom: 12px; }

.social-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.social-card p {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 12px;
}

.social-reward {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-dim);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--green);
    font-weight: 600;
}

/* CTA */
.cta {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.cta-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 24px;
    animation: float 4s ease-in-out infinite;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: .85rem;
    color: var(--text-muted);
    transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-disclaimer {
    font-size: .75rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: .7rem;
    color: var(--text-dim);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 10px 20px;
    background: var(--orange);
    color: #000;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: .8rem;
    font-weight: 500;
    opacity: 0;
    transition: all .3s;
    z-index: 200;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-image { width: 250px; height: 250px; }

    .game-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid, .token-grid, .airdrop-grid, .social-grid {
        grid-template-columns: 1fr;
    }

    .meme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contract-box { flex-wrap: wrap; }

    .cta-buttons { flex-direction: column; align-items: center; }
}
