/* BORSA ANALİZ - Cyberpunk / Terminal Theme Styling */

body {
    font-family: 'Inter', sans-serif;
    background-color: #08090d;
    overflow-x: hidden;
}

/* Neon Green Grid Background */
.matrix-grid {
    background-image: 
        linear-gradient(to right, rgba(57, 255, 20, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(57, 255, 20, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Neon lime glows */
.neon-lime-text {
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.neon-lime-glow-btn {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}
.neon-lime-glow-btn:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
    transform: scale(1.02);
}

.neon-lime-border {
    border: 1px solid rgba(57, 255, 20, 0.15);
}
.neon-lime-border:hover {
    border-color: rgba(57, 255, 20, 0.6);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

/* Cyber Terminal / Console cards */
.terminal-card {
    background: rgba(14, 16, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.terminal-card::before {
    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.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 10;
}

/* Scanline Effect */
.scanline {
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 95%, rgba(57, 255, 20, 0.08) 95%, rgba(57, 255, 20, 0.08) 98%, rgba(0, 0, 0, 0) 98%);
    background-size: 100% 20px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9;
    animation: scanlineScroll 6s linear infinite;
}
@keyframes scanlineScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 640px; }
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}
.animate-pulse-dot {
    animation: pulse-dot 1.5s infinite ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #08090d;
}
::-webkit-scrollbar-thumb {
    background: #1c1e26;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #39ff14;
}

/* Active Progress Roadmap Line styling */
.roadmap-step {
    position: relative;
}
.roadmap-step::after {
    content: '';
    position: absolute;
    top: 24px;
    bottom: -24px;
    left: 12px;
    width: 2px;
    background: rgba(57, 255, 20, 0.2);
    z-index: 0;
}
.roadmap-step:last-child::after {
    display: none;
}
