/* 
   MoonTune Web4 Landing Page Styles
   Signature Cyberpunk Theme (Deep Purples, Glowing Cyans, and Neon Accents)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Press+Start+2P&family=Space+Grotesk:wght@400;700&display=swap');

:root {
    --bg-dark: #05050d;
    --bg-panel: rgba(18, 15, 40, 0.45);
    --border-purple: rgba(124, 58, 237, 0.3);
    --primary-cyan: #00ffff;
    --primary-purple: #7c3aed;
    --primary-purple-light: #a78bfa;
    --neon-pink: #ff00ff;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --glow-cyan: 0 0 15px rgba(0, 255, 255, 0.45);
    --glow-purple: 0 0 15px rgba(124, 58, 237, 0.35);
    --glow-pink: 0 0 15px rgba(255, 0, 255, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Cyberpunk grid effect */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.glow-bg {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--neon-pink);
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    letter-spacing: 1.5px;
    text-shadow: var(--glow-cyan);
}

.app-btn {
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--primary-cyan);
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.app-btn:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.badge {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-cyan) 70%, var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.primary-btn {
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-pink));
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-pink);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-panel);
    border: 2px solid var(--border-purple);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: var(--glow-purple);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    border-color: var(--primary-purple-light);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.25);
}

/* Sections General */
section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

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

/* Hot Wallet visual card */
.wallet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wallet-details h3 {
    font-size: 1.8rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
}

.wallet-details p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.wallet-visual {
    position: relative;
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.02);
    padding: 30px;
    box-shadow: var(--glow-cyan);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wallet-visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.2);
    padding-bottom: 12px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--neon-pink);
}

.feature-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--primary-cyan);
}

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

/* Newsletter Dispatch panel */
.dispatch-panel {
    border: 2px dashed var(--primary-cyan);
    background: rgba(0, 255, 255, 0.02);
    border-radius: 20px;
    padding: 45px;
    margin-top: 40px;
}

.dispatch-meta {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: var(--neon-pink);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

/* Footer */
footer {
    border-top: 1px solid var(--border-purple);
    padding: 40px 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-cyan);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .wallet-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero {
        padding: 50px 5%;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .primary-btn, .app-btn {
        width: 100%;
        text-align: center;
    }
}
