/* ==========================================================================
   1. CORE STYLES (From original style.css)
   ========================================================================== */

html, body {
    width: 100%;
    overflow-x: hidden; /* This stops the horizontal "wobble" */
    margin: 0;
    padding: 0;
}

/* --- CORE VARIABLES --- */
:root {
    --neon-cyan: #00f2ff;
    --neon-pink: #ff00ff;
    --dark-bg: #050505;
    --card-bg: rgba(15, 15, 15, 0.9);
    --trade-green: #22c55e;
    --trade-red: #ef4444;
}

/* The Container: Fixed to the top/bottom and hidden overflow */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
    height: 40px; 
    display: flex;
    align-items: center;
}

/* The Moving Part: Use 100vw to start it off-screen to the right */
.ticker-content {
    display: flex;
    white-space: nowrap;
    padding-left: 100vw; 
    animation: ghost-ticker 30s linear infinite;
}

/* Individual Ticker Items */
.ticker-item {
    color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0 40px; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item span.roi {
    color: var(--trade-green);
    font-weight: 900;
}

/* The Animation: Start at 0 (which is 100vw offset) and move left */
@keyframes ghost-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* PUSH CONTENT DOWN SO IT DOESN'T HIDE */
body {
    padding-top: 112px !important; /* 70px nav + 42px ticker */
}

/* --- BASE STYLES --- */
body { 
    background-color: var(--dark-bg); color: #ffffff; 
    font-family: 'Inter', sans-serif; margin: 0; padding: 0;
    overflow-x: hidden; position: relative;
}

/* --- THE CYBER GRID --- */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: linear-gradient(rgba(0, 242, 255, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 242, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px; z-index: -1; pointer-events: none;
    transform: perspective(800px) rotateX(60deg) translateY(-10%) scale(2.5);
    transform-origin: top; animation: grid-move 12s linear infinite;
}

@keyframes grid-move { from { background-position: 0 0; } to { background-position: 0 30px; } }

html { scroll-behavior: smooth; }

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}

.section-title span {
    color: #ff00ff; 
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
    margin-left: 10px;
}

.container { max-width: 1300px; margin: 0 auto; padding: 40px 20px; position: relative; z-index: 2; }

/* --- NAVIGATION & TICKER --- */
nav {
    position: fixed; top: 0; width: 100%; height: 70px; background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    display: flex; align-items: center; justify-content: space-between; padding: 0 50px; z-index: 1001; box-sizing: border-box;
}
.nav-logo { color: var(--neon-cyan); font-weight: 900; text-decoration: none; display: flex; align-items: center; gap: 10px; }

.navbar {
    width: 100%; 
    max-width: 100vw; 
    box-sizing: border-box; 
}

.hamburger {
    display: none !important; 
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important; 
        color: var(--neon-cyan);
        font-size: 1.5rem;
        cursor: pointer;
        margin-left: auto;
        padding-right: 10px;
    }
}

.nav-links { display: flex; align-items: center; }
.nav-links a { color: #888; text-decoration: none; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-left: 25px; transition: 0.3s; }
.nav-links a:hover { color: var(--neon-pink); }

/* --- THE NEON GHOST BUTTON --- */
.nav-wallet-btn {
    margin-left: 25px; 
    background: transparent !important;
    border: 1px solid #00f2ff !important;
    color: #00f2ff !important;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.nav-wallet-btn:hover {
    background: #00f2ff !important;
    color: #000000 !important;
    box-shadow: 0 0 15px #00f2ff, 0 0 30px rgba(0, 242, 255, 0.6);
}

.nav-wallet-btn.sync {
    background: transparent !important;
    border: 1px solid var(--neon-cyan) !important;
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 8px var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.1);
}

.nav-wallet-btn.sync:hover {
    background: var(--neon-cyan) !important;
    color: #000000 !important;
    text-shadow: none !important;
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-1px);
}

/* UPDATED TICKER SECTION */
.ticker-wrap { 
    position: fixed; 
    top: 70px; 
    width: 100%; 
    height: 42px; 
    background: #000; 
    border-bottom: 1px solid rgba(0, 242, 255, 0.15); 
    z-index: 1000; 
    display: flex; 
    align-items: center; 
    overflow: hidden; 
}

.trending-badge { 
    background: var(--neon-cyan); 
    color: #000; 
    padding: 0 40px 0 20px;
    font-weight: 900; 
    font-size: 0.75rem;
    height: 42px; 
    display: flex; 
    align-items: center; 
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%); 
    position: relative; 
    z-index: 10; 
    flex-shrink: 0;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5); 
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
}

.trending-badge:hover {
    background: #fff;
    box-shadow: 10px 0 20px rgba(0, 242, 255, 0.4);
    padding-left: 30px;
    color: #000;
}

.ticker { 
    display: flex; 
    flex-wrap: nowrap; 
    white-space: nowrap; 
    animation: ticker-scrolling 35s linear infinite; 
    z-index: 1; 
}

.ticker__item { 
    padding: 0 30px; 
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #fff; 
    display: flex; 
    gap: 10px; 
    flex-shrink: 0; 
}
.t-up { color: var(--trade-green); } .t-down { color: var(--trade-red); } .t-name { color: var(--neon-cyan); }
@keyframes ticker-scrolling { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.text-pink {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}


/* --- HERO REWRITE --- */
.hero-banner {
    min-height: 45vh; /* Increased slightly for better vertical presence */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; /* This centers it vertically */
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9)), url('../media/background_banner.jpg');
    background-size: cover; 
    background-position: center; 
    border-bottom: 2px solid var(--neon-pink); 
    padding: 0 20px;
    box-sizing: border-box;
    position: relative; /* Container for the ::after overlay */
    overflow: hidden;
}

.hero-content-wrapper {
    /* REMOVE the transform: translateY(56px); */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1; /* Sits BELOW the ::after overlay (z-index: 2) */
}

.logo-glow { 
    font-size: clamp(2.5rem, 8vw, 5rem); 
    color: var(--neon-cyan); 
    text-shadow: 0 0 30px var(--neon-cyan); 
    font-weight: 900; 
    margin: 0; 
    line-height: 1; 
}

.h1-glow {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden; 
    white-space: nowrap; 
    border-right: 3px solid var(--neon-pink); 
    width: 0; 
    animation: 
        typing 2s steps(30, end) forwards,
        blink-caret 0.75s step-end infinite,
        subtext-pulse 3s ease-in-out infinite 2s; 
}

@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--neon-pink) } }
@keyframes subtext-pulse {
    0%, 100% { text-shadow: 0 0 10px var(--neon-pink); opacity: 0.8; border-right-color: transparent; }
    50% { text-shadow: 0 0 25px var(--neon-pink), 0 0 35px var(--neon-pink); opacity: 1; border-right-color: transparent; }
}

/* This is your "Transparency Effect" (Scanlines/Noise) */
.hero-banner::after {
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 255, 0, 0.03));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none; 
    z-index: 2; /* Sits ABOVE the text to create the "under the glass" effect */
}

/* --- GRIDS --- */
.token-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; margin-bottom: 60px; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; }

.token-card, .ecosystem-card {
    background: var(--card-bg); padding: 30px; border-radius: 20px; position: relative;
    display: flex; flex-direction: column; backdrop-filter: blur(10px); transition: 0.4s;
    box-sizing: border-box;
}

.ecosystem-card { border: 1px solid rgba(255, 0, 255, 0.2); aspect-ratio: 1 / 1; justify-content: center; }
.token-card { border: 1px solid rgba(0, 242, 255, 0.1); min-height: 420px; }

.token-badge { position: absolute; top: 20px; right: 20px; padding: 4px 10px; border-radius: 8px; font-size: 0.65rem; font-weight: bold; text-transform: uppercase; background: rgba(0, 242, 255, 0.05); color: var(--neon-cyan); border: 1px solid rgba(0, 242, 255, 0.3); }

.token-card p, .ecosystem-card p { flex-grow: 1; margin-bottom: 15px; color: #888; font-size: 0.95rem; line-height: 1.5; }
.token-card:hover, .ecosystem-card:hover { transform: translateY(-10px); box-shadow: 0 0 30px rgba(0, 242, 255, 0.2); }

/* --- X BANNER --- */
.mid-section-banner { display: block; margin: 80px 0; text-decoration: none; }
.banner-inner { background: linear-gradient(90deg, #0a0a0a, #151515); border: 1px solid rgba(0, 242, 255, 0.2); border-radius: 24px; padding: 40px; transition: 0.3s; }
.banner-content-wrapper { display: flex; justify-content: space-between; align-items: center; }
.banner-text { color: #ffffff !important; margin-top: 5px; opacity: 0.9; }
.banner-subtitle { color: var(--neon-cyan); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; }
.banner-title { font-size: 2rem; color: #fff; margin: 0; font-weight: 900; }
.action-btn { border: 1px solid var(--neon-cyan); color: var(--neon-cyan); padding: 12px 25px; border-radius: 10px; font-weight: 900; transition: 0.3s; }
.mid-section-banner:hover .banner-inner { border-color: var(--neon-cyan); }
.mid-section-banner:hover .action-btn { background: var(--neon-cyan); color: #000; }



/* --- UI ELEMENTS --- */
.token-icon { width: 50px; height: 50px; background: var(--neon-cyan); border-radius: 10px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 900; overflow: hidden; flex-shrink: 0; }
.token-icon img { width: 100%; height: 100%; object-fit: cover; }

.buy-btn, .eco-pill { 
    background: var(--neon-cyan); color: #000; width: 100%; padding: 14px; border: none; 
    border-radius: 10px; font-weight: 900; cursor: pointer; transition: 0.3s; text-decoration: none; text-align: center; display: block; box-sizing: border-box;
}
.buy-btn:hover, .eco-pill:hover { background: #fff; box-shadow: 0 0 15px #fff; animation: jitter 0.2s infinite; }

@keyframes jitter {
    0% { transform: translate(0,0); }
    25% { transform: translate(1px, -1px); }
    50% { transform: translate(-1px, 1px); }
    75% { transform: translate(1px, 1px); }
    100% { transform: translate(0,0); }
}

.token-stats { display: flex; justify-content: space-between; border-top: 1px solid #222; padding-top: 15px; margin-bottom: 15px; font-size: 0.85rem; }

.disconnect-container {
    margin-top: 25px; 
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    text-align: center;
}

.disconnect-link {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #ff4444; 
    opacity: 0.5;
    cursor: pointer; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    display: inline-block; 
    padding: 5px 10px;
}

.disconnect-link:hover {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
    color: #ff0000; 
}

/* --- ECOSYSTEM ELEMENTS --- */
.status-indicator { position: absolute; top: 20px; left: 20px; display: flex; align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 800; color: var(--trade-green); text-transform: uppercase; z-index: 10; }
.status-dot { width: 6px; height: 6px; background-color: var(--trade-green); border-radius: 50%; box-shadow: 0 0 10px var(--trade-green); animation: status-blink 1.5s infinite; }
@keyframes status-blink { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.eco-card-title { color: var(--neon-cyan) !important; font-weight: 900; font-size: 1.5rem; text-shadow: 0 0 10px var(--neon-cyan); animation: eco-cyan-pulse 3s ease-in-out infinite; }
@keyframes eco-cyan-pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 1; text-shadow: 0 0 30px var(--neon-cyan); } }

.avatar-stack { display: flex; margin-bottom: 15px; }
.avatar-stack img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid #000; margin-right: -10px; }
.avatar-count { margin-left: 20px; color: var(--neon-cyan); font-weight: 800; font-size: 0.8rem; }
.social-links-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.social-pill { background: #111; border: 1px solid #222; padding: 10px; border-radius: 10px; color: #fff; text-align: center; text-decoration: none; font-size: 0.8rem; }
.social-pill:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

footer { text-align: center; padding: 60px; opacity: 0.4; font-size: 0.8rem; }

.social-pill i { font-size: 1.2rem; color: #ffffff; transition: 0.3s; }
.social-pill:hover i { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan); }

/* --- UPDATED RESPONSIVE SECTION --- */
@media (max-width: 1200px) { 
    .token-grid, .ecosystem-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }

    .token-card {
        border: 1px solid rgba(0, 242, 255, 0.5) !important;
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.1) !important;
    }

    .ecosystem-card {
        border: 1px solid rgba(255, 0, 255, 0.5) !important;
        box-shadow: 0 0 15px rgba(255, 0, 255, 0.1) !important;
    }

    .hamburger {
        display: none; 
        color: var(--neon-cyan);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-links {
        display: none; 
        position: fixed;
        top: 70px; 
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        padding: 30px 0;
        border-bottom: 2px solid var(--neon-cyan);
        z-index: 1001;
        box-sizing: border-box;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        display: block !important;
        margin: 15px 0 !important; 
        font-size: 1.1rem;
        width: 100%; 
        text-align: center;
    }

    .nav-wallet-btn {
        margin-left: 0 !important; 
        margin-top: 20px;
        width: 200px; 
    }

    .token-grid, .ecosystem-grid { grid-template-columns: 1fr; } 
    
    .hero-content-wrapper { transform: translateY(30px); }

    .h1-glow {
        font-size: 1.1rem !important; 
        white-space: normal !important; 
        width: auto !important; 
        border-right: none !important; 
        animation: subtext-pulse 3s ease-in-out infinite !important; 
        text-align: center;
        line-height: 1.4;
        display: block;
    }

    .hero-content-wrapper {
        padding: 0 15px; 
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- STRICT AVATAR/IMAGE FIX ONLY --- */
.token-card { background: #000000 !important; overflow: hidden !important; }
.token-card img { background: transparent !important; border-radius: inherit; display: block; width: 100%; object-fit: cover; }
.token-icon, .token-icon img { background: transparent !important; border: none !important; }


/* =========================================
   1. ROADMAP GRID RECOVERY (ALIGNED)
   ========================================= */

.roadmap-wrapper {
    position: relative;
    /* 1. MATCH THE MAIN SITE WIDTH (1300px instead of 1200px) */
    max-width: 1200px; 
    margin: 60px auto;  
    /* 2. MATCH THE MAIN SITE PADDING (20px) */
    padding: 0 20px;
    box-sizing: border-box;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    /* 3. REMOVED THE PADDING-LEFT THAT WAS CAUSING THE OFFSET */
    padding-left: 0; 
}

@media (min-width: 1024px) {
    .roadmap-grid {
        grid-template-columns: repeat(3, 1fr); 
        /* Ensure no extra padding pushes it off-center on desktop */
        padding-left: 0; 
    }
}

.roadmap-card {
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
    /* Ensure the card doesn't shrink or shift */
    width: 100%;
    box-sizing: border-box;
}

.phase-completed { border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 242, 255, 0.1); }
.phase-active { border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255, 0, 255, 0.15); }

.roadmap-dot {
    position: absolute;
    /* Adjust this to keep it inside or just on the edge of the card */
    left: 15px; 
    top: -6px; /* Moves it to the top border */
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    z-index: 5;
}

/* =========================================
   3. MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 768px) {
    .roadmap-wrapper::before { left: 15px; }
    .roadmap-grid { padding-left: opx; }
    .roadmap-dot { left: -26px; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 2px solid var(--neon-cyan);
        flex-direction: column;
        padding: 30px 0;
    }

    .nav-links.active { display: flex; }
}

/* =========================================
   SNIPER BOT TERMINAL (FRONT PAGE)
   ========================================= */

/* 1. The Outer Wrapper */
/* Update this block in your CSS */
.bot-preview {
    width: 100%;
    /* 1. Change this from 1200px to 1300px to match your .container */
    max-width: 1300px; 
    
    /* 2. 'auto' handles the horizontal centering */
    margin: 40px auto; 
    
    /* 3. This 20px padding is the "secret sauce" - it matches your .container padding */
    padding: 0 20px; 
    
    box-sizing: border-box;
    display: block;
}

.container-sniperai {
    width: 100%; 
    position: relative; 
    z-index: 2;
    max-width: 1300px; 
    margin: 0 auto;
    background: #0d0d12;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    overflow: hidden;
    /* Added a slight neon glow to match your site's aesthetic */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 242, 255, 0.05);
}

/* 3. The Header (Centered Title Fix) */
.window-header {
    background: #1a1a24;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between; /* Better than flex: 1 for centering */
    align-items: center;
    border-bottom: 1px solid #2a2a3a;
}

.circles {
    display: flex;
    gap: 8px;
    width: 100px; /* Fixed width to balance the header */
}

.window-title {
    color: #888899;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    flex-grow: 1; /* Takes up middle space */
}

/* Space filler to keep title centered since circles are on the left */
.window-header::after {
    content: "";
    width: 100px; /* Matches .circles width */
}

/* 4. Image Handling */
.screenshot-wrapper {
    position: relative;
    background: #000;
    line-height: 0;
}

/* Ensure the image doesn't have internal margins */
.terminal-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* --- 2. SHADOW ARCHITECT / TRANSMISSION --- */
.dev-transmission-bridge {
    display: flex;
    justify-content: center;
    padding: 80px 0 40px 0;
    background: transparent;
}

.transmission-card {
    max-width: 700px;
    width: 90%;
    padding: 20px 30px;
    background: rgba(0, 242, 255, 0.04);
    border-left: 3px solid #00f2ff;
    border-radius: 0 8px 8px 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.transmission-quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-style: italic;
    min-height: 60px;
    letter-spacing: 0.3px;
}

.transmission-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(0, 242, 255, 0.5);
    text-transform: uppercase;
}

.cursor {
    color: #00f2ff;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink { 50% { opacity: 0; } }



/* --- 6. SITE FOOTER --- */
.site-footer {
    width: 100%;
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 650px; /* Aligned with blueprint width */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.status-left {
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    font-size: 8px;
    animation: footer-pulse 2s infinite;
}

@keyframes footer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- 7. RESPONSIVE --- */
@media (max-width: 768px) {
    .terminal-body { grid-template-columns: 1fr; }
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .bp-cta-group {
        flex-direction: column;
    }
}