/* ===============================================
   PROJECT AURORA: ULTRA-PREMIUM DASHBOARD
   Deep Space Edition - 2025
   =============================================== */

/* 
   FONTS 
   - Inter: UI Elements
   - JetBrains Mono: Data & Numbers
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    /* --- PALETTE: DEEP SPACE --- */
    --bg-deep: #030305;
    --bg-subtle: #08080a;
    --bg-card: rgba(12, 12, 16, 0.6);
    
    /* --- ACCENTS --- */
    --accent-primary: #00f2ff;  /* Electric Cyan */
    --accent-secondary: #7000ff; /* Deep Violet */
    --accent-success: #00ff9d;   /* Neon Mint */
    --accent-danger: #ff0055;    /* Neon Red */
    --accent-warning: #ffcc00;
    
    /* --- TEXT --- */
    --text-main: #ffffff;
    --text-muted: #888899;
    --text-dim: #444455;

    /* --- GLASSMORPHISM --- */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --backdrop-blur: blur(20px);

    /* --- ANIMATIONS --- */
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- BACKGROUND FX --- */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.08), transparent 40%);
    filter: contrast(120%);
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- LAYOUT --- */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text.accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HEADER --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

/* --- NAVIGATION --- */
.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-btn.active {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

/* --- CARDS & GLASSMORPHISM --- */
.glow-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-elastic), box-shadow 0.4s var(--ease-smooth);
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, transparent 100%);
    pointer-events: none;
}

.glow-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

/* --- CHARTS GRID --- */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a35, #1a1a20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.coin-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.live-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(0, 255, 157, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-success);
    animation: pulse 2s infinite;
}

.chart-container {
    height: 400px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

/* --- AIRDROP CHECKER --- */
.airdrop-main {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checker-hero {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 30%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.wallet-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    padding-right: 140px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s;
}

.wallet-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.1);
}

.check-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    padding: 0 1.5rem;
    background: var(--accent-primary);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.check-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-primary);
}

/* --- RESULTS --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.airdrop-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s;
}

.airdrop-card.eligible {
    border-color: rgba(0, 255, 157, 0.3);
    background: linear-gradient(180deg, rgba(0, 255, 157, 0.05) 0%, transparent 100%);
}

.airdrop-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.eligible {
    background: var(--accent-success);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

.status-badge.not-eligible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-entry {
    animation: slideUp 0.6s var(--ease-smooth) forwards;
    opacity: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .charts-grid { grid-template-columns: 1fr; }
    .header-content { flex-direction: column; gap: 1rem; }
}
