/* BORSA TAHTA TREND - Landing Page Premium Styling */

body {
    font-family: 'Outfit', sans-serif;
    background-color: #070a13;
    overflow-x: hidden;
}

/* Grid Background Pattern */
.grid-bg {
    background-image: 
        linear-gradient(to right, rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Glow effects */
.neon-glow-blue {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}
.neon-glow-green {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
}
.neon-text-glow {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}
.neon-border {
    border: 1px solid rgba(0, 229, 255, 0.15);
}
.neon-border:hover {
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* Glassmorphism style cards */
.glass-card {
    background: rgba(15, 20, 36, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    }
}
.animate-pulse-glow {
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s infinite ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #070a13;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00e5ff;
}

/* Candlestick Chart Mockup Styles */
.candle-green {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}
.candle-red {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}
