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

:root {
    --bg-dark: #090c10;
    --bg-card: #0d1117;
    --bg-card-hover: #161b22;
    --border-color: #21262d;
    --brand-lime: #dcff7d;
    --brand-lime-glow: rgba(220, 255, 125, 0.25);
    --text-muted: #8b949e;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #f0f6fc;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b949e;
}

/* Glowing Animations for indicators */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 8px var(--brand-lime-glow);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 16px var(--brand-lime);
        opacity: 1;
    }
}

.glow-active {
    animation: pulse-glow 2s infinite ease-in-out;
}

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

/* Glassmorphism classes */
.glass-panel {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sidebar sticky position */
@media (min-width: 1024px) {
    .sticky-sidebar {
        position: sticky;
        top: 2rem;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
}

/* Glowing text effects */
.text-glow-lime {
    text-shadow: 0 0 10px rgba(220, 255, 125, 0.5);
}

/* Ad placeholder animations */
.ad-shimmer {
    background: linear-gradient(
        90deg,
        rgba(33, 38, 45, 0.4) 25%,
        rgba(48, 54, 61, 0.8) 37%,
        rgba(33, 38, 45, 0.4) 63%
    );
    background-size: 400% 100%;
    animation: shimmer 1.8s ease infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
