@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #050507;
    --bg-panel: rgba(18, 18, 22, 0.7);
    /* Glass */
    --card-border: rgba(255, 255, 255, 0.08);

    --text-main: #ffffff;
    --text-muted: #8b8b9b;

    --accent-green: #aaff00;
    --accent-green-glow: rgba(170, 255, 0, 0.6);

    --accent-purple: #b026ff;
    --accent-purple-glow: rgba(176, 38, 255, 0.6);

    --accent-cyan: #00f3ff;
    --accent-cyan-glow: rgba(0, 243, 255, 0.6);

    --accent-yellow: #ffd700;

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    /* Futuristic Grid Background */
    background-image:
        linear-gradient(rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.95)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center top;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Subtle glow blob moving in background (optional simplified version) */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(170, 255, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Crypto Floating Background */
.crypto-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    /* For JS Parallax smooth */
}

.crypto-bg i {
    position: absolute;
    color: rgba(255, 255, 255, 0.02);
    /* Ghostly opacity */
    font-size: 3rem;
    filter: blur(2px);
    animation: floatBg 15s ease-in-out infinite;
}

/* Specific icon positioning and sizes */
.fa-bitcoin {
    top: 15%;
    left: 10%;
    font-size: 5rem !important;
    animation-duration: 18s !important;
    color: rgba(255, 166, 0, 0.04) !important;
}

.fa-ethereum {
    top: 70%;
    left: 85%;
    font-size: 8rem !important;
    animation-duration: 22s !important;
    color: rgba(100, 100, 255, 0.04) !important;
}

/* Network Badge */
.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(130, 71, 229, 0.1);
    border: 1px solid rgba(130, 71, 229, 0.3);
    border-radius: 50px;
    margin-left: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #bca0ff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: default;
}

.network-badge:hover {
    background: rgba(130, 71, 229, 0.2);
    border-color: rgba(130, 71, 229, 0.6);
    box-shadow: 0 0 20px rgba(130, 71, 229, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #8247e5;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #8247e5;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}


.fa-litecoin-sign {
    top: 40%;
    left: 15%;
    font-size: 4rem !important;
    animation-delay: 2s !important;
}

.fa-monero {
    top: 80%;
    left: 30%;
    font-size: 6rem !important;
    animation-duration: 25s !important;
}

.fa-circle-nodes {
    top: 20%;
    left: 60%;
    font-size: 3rem !important;
    animation-delay: 5s !important;
    color: rgba(0, 255, 100, 0.04) !important;
}

.fa-cube {
    top: 60%;
    left: 5%;
    font-size: 10rem !important;
    opacity: 0.1;
    animation-duration: 30s !important;
    filter: blur(5px) !important;
    color: rgba(255, 255, 255, 0.01) !important;
}

.fa-layer-group {
    top: 40%;
    right: 20%;
    font-size: 4rem !important;
    animation-delay: 1s !important;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }
}

/* Utilities */
.text-green {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(170, 255, 0, 0.3);
}

.text-yellow {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-purple {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

.text-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.text-muted {
    color: var(--text-muted);
}

.text-glow {
    text-shadow: 0 0 15px currentColor;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 7, 0.8);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.brand i {
    color: var(--accent-green);
    filter: drop-shadow(0 0 5px var(--accent-green));
}

.nav-links {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link.active {
    background: var(--accent-green);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 15px var(--accent-green-glow);
}

.wallet-connect {
    display: flex;
    gap: 12px;
}

.btn-pill {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.btn-purple {
    border: 1px solid rgba(176, 38, 255, 0.5);
    color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.1);
}

.btn-purple:hover {
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
    background: rgba(176, 38, 255, 0.1);
}

.btn-yellow {
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: var(--accent-yellow);
}

.btn-yellow:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    /* Gradient text */
    background: linear-gradient(45deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value.text-green {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--accent-green);
}

.stat-value.text-yellow {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--accent-yellow);
}

.stat-value.text-purple {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--accent-purple);
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(170, 255, 0, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(170, 255, 0, 0.2);
    box-shadow: 0 0 10px rgba(170, 255, 0, 0.05);
}

/* Content */
.content-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Panel Design */
.panel {
    background: var(--bg-panel);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.panel-title i {
    filter: drop-shadow(0 0 8px currentColor);
}

.apy-badge {
    color: var(--accent-green);
    background: rgba(170, 255, 0, 0.05);
    border: 1px solid var(--accent-green);
    padding: 6px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px var(--accent-green-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px var(--accent-green-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--accent-green-glow);
    }

    100% {
        box-shadow: 0 0 10px var(--accent-green-glow);
    }
}

/* Inputs */
.input-row {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.input-group {
    flex: 1;
}

.label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(170, 255, 0, 0.1);
}

.input-field {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit';
    width: 100%;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
}

.input-action {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.input-action:hover {
    color: var(--text-main);
}

/* Reserve Cards */
.reserve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .reserve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reserve-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.reserve-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.reserve-card.active {
    background: linear-gradient(180deg, rgba(170, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(170, 255, 0, 0.15), inset 0 0 20px rgba(170, 255, 0, 0.05);
}

.check-circle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    border: 2px solid #000;
    display: none;
}

.reserve-card.active .check-circle {
    display: block;
}

.reserve-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.reserve-card.active .reserve-icon {
    color: var(--text-main);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--accent-green));
}

.reserve-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #fff;
}

.reserve-period {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.reserve-bonus {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px currentColor;
    /* Glow effect */
}

.reserve-limit {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-family: monospace;
}

/* Quantity Control & Info */
.info-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Action Button: Futuristic */
.btn-action-large {
    width: 100%;
    padding: 22px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(90deg, #94ad14 0%, #1e6d30 100%);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}

/* Moving sheen effect */
.btn-action-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-action-large:hover::after {
    left: 100%;
    opacity: 1;
    transition: 0.5s;
}

.btn-action-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(148, 173, 20, 0.4);
}

/* Summary Panel */
.summary-title {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-total {
    text-align: center;
    margin: 35px 0;
    position: relative;
}

.summary-total::before,
.summary-total::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.summary-total::before {
    top: -15px;
}

.summary-total::after {
    bottom: -15px;
}

.summary-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    margin: 5px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.summary-row:last-child {
    border-bottom: none;
}

/* Summary Buttons Fix */
.summary-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.btn-outline {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Affiliate */
.affiliate-panel {
    border-top: 2px solid var(--accent-purple);
    box-shadow: 0 -10px 40px rgba(176, 38, 255, 0.05);
}

.text-purple-glow {
    color: var(--accent-purple);
    text-shadow: 0 0 15px var(--accent-purple-glow);
}

/* Bottom Bar */
.bottom-bar {
    background: var(--bg-panel);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-green));
    box-shadow: 0 0 20px var(--accent-purple);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    background: rgba(18, 18, 22, 0.95);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-green);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.error {
    border-left-color: #ff3333;
}

.toast-notification i {
    font-size: 1.1rem;
}

/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */

@media (max-width: 900px) {

    /* Navbar Stacking */
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .wallet-connect {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Main Layout */
    .container {
        padding: 10px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    /* Stats Cards */
    .stats-grid {
        grid-template-columns: 1fr;
        /* Full width cards */
        gap: 15px;
    }

    /* Inputs */
    .input-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Reserve Cards */
    .reserve-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet/large phone */
        gap: 10px;
    }

    /* Quantity Section - Override inline styles via class specificity if possible, or !important */
    /* Note: The HTML uses inline styles for the quantity stats-grid. 
       We need to target it specifically. */
    .panel>.stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Summary Panel Text */
    .summary-amount {
        font-size: 2.2rem;
    }

    /* Buttons */
    .summary-actions {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {

    /* Ultra Small Screens */
    .reserve-grid {
        grid-template-columns: 1fr;
        /* 1 column for reserve cards */
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .brand {
        flex-direction: column;
        gap: 5px;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* Blockchain Activity Console */
.blockchain-console {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 15px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    overflow: hidden;
}

.blockchain-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.03), transparent);
    animation: consoleScan 3s infinite linear;
}

@keyframes consoleScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.console-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.console-text {
    font-size: 0.75rem;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0.9;
}

.console-hash {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.fade-in-out {
    animation: consoleFade 0.5s ease-in-out;
}

@keyframes consoleFade {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.text-cyan {
    color: var(--accent-cyan);
}