/* ===== HEPSI HİSSE LANDING PAGE STYLES ===== */

/* Browser Compatibility Layer */
@supports not (backdrop-filter: blur(10px)) {
    .navbar, .pricing-card, .pricing-note {
        background: rgba(0, 0, 0, 0.95) !important;
    }
}

@supports not (display: grid) {
    .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    .col-lg-4, .col-md-6 {
        flex: 1 1 300px !important;
        margin: 10px !important;
    }
}

/* CSS Variables with Fallbacks */
:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #1a1a1a;
    --accent-color: #00d4ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --border-color: #333333;
    --shadow-color: rgba(0, 255, 136, 0.1);
    --glow-color: rgba(0, 255, 136, 0.3);
    
    /* Bootstrap Variables for Plan Cards */
    --bs-primary: #556ee6;
    --bs-secondary: #74788d;
    --bs-success: #34c38f;
    --bs-info: #50a5f1;
    --bs-warning: #f1b44c;
    --bs-danger: #f46a6a;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
}

/* Fallback for older browsers */
body {
    background: #000000;
    background: var(--bg-gradient);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-color);
    color: var(--bg-primary);
}

.btn-outline-light {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}


.navbar-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
}

.login-link {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.login-link:hover {
    border-color: var(--primary-color) !important;
    background: rgba(0, 255, 136, 0.1) !important;
}

.news-link {
    border: 2px solid rgba(0, 255, 136, 0.3) !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%) !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    position: relative !important;
    overflow: hidden !important;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-link:hover::before {
    left: 100%;
}

.news-link:hover {
    border-color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3) !important;
}


.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.trading-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* ===== TRADING ELEMENTS ANIMATIONS ===== */

/* Chart Lines */
.chart-line {
    position: absolute;
    height: 2px;
    opacity: 0.2;
    animation: chartLineMove 8s linear infinite;
}

.chart-line-1 {
    width: 500px;
    top: 5%;
    left: -500px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation-delay: 0s;
}

.chart-line-2 {
    width: 450px;
    top: 15%;
    right: -450px;
    background: linear-gradient(90deg, transparent, #ff416c, transparent);
    animation-delay: 1s;
}

.chart-line-3 {
    width: 400px;
    top: 25%;
    left: -400px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation-delay: 2s;
}

.chart-line-4 {
    width: 350px;
    top: 35%;
    right: -350px;
    background: linear-gradient(90deg, transparent, #ff416c, transparent);
    animation-delay: 3s;
}

.chart-line-5 {
    width: 300px;
    top: 45%;
    left: -300px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation-delay: 4s;
}

.chart-line-6 {
    width: 400px;
    top: 55%;
    right: -400px;
    background: linear-gradient(90deg, transparent, #ff416c, transparent);
    animation-delay: 5s;
}

.chart-line-7 {
    width: 350px;
    top: 65%;
    left: -350px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation-delay: 6s;
}

.chart-line-8 {
    width: 300px;
    top: 75%;
    right: -300px;
    background: linear-gradient(90deg, transparent, #ff416c, transparent);
    animation-delay: 7s;
}

.chart-line-9 {
    width: 250px;
    bottom: 15%;
    left: -250px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation-delay: 0.5s;
}

.chart-line-10 {
    width: 200px;
    bottom: 5%;
    right: -200px;
    background: linear-gradient(90deg, transparent, #ff416c, transparent);
    animation-delay: 1.5s;
}

/* Candlestick Charts */
.candlestick {
    position: absolute;
    width: 6px;
    height: 30px;
    animation: candlestickPulse 4s ease-in-out infinite;
    opacity: 0.2;
}

.candlestick-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.candlestick-2 {
    top: 18%;
    right: 8%;
    animation-delay: 0.5s;
}

.candlestick-3 {
    top: 28%;
    left: 12%;
    animation-delay: 1s;
}

.candlestick-4 {
    top: 38%;
    right: 15%;
    animation-delay: 1.5s;
}

.candlestick-5 {
    top: 48%;
    left: 8%;
    animation-delay: 2s;
}

.candlestick-6 {
    top: 58%;
    right: 12%;
    animation-delay: 2.5s;
}

.candlestick-7 {
    top: 68%;
    left: 15%;
    animation-delay: 3s;
}

.candlestick-8 {
    top: 78%;
    right: 8%;
    animation-delay: 3.5s;
}

.candlestick-9 {
    bottom: 15%;
    left: 10%;
    animation-delay: 0.2s;
}

.candlestick-10 {
    bottom: 5%;
    right: 15%;
    animation-delay: 0.7s;
}

.candle-body {
    width: 6px;
    height: 15px;
    position: absolute;
    top: 7px;
    border-radius: 1px;
    opacity: 0.2;
}

.candlestick-1 .candle-body,
.candlestick-3 .candle-body,
.candlestick-5 .candle-body,
.candlestick-7 .candle-body,
.candlestick-9 .candle-body {
    background: var(--primary-color);
}

.candlestick-2 .candle-body,
.candlestick-4 .candle-body,
.candlestick-6 .candle-body,
.candlestick-8 .candle-body,
.candlestick-10 .candle-body {
    background: #ff416c;
}

.candle-wick-top, .candle-wick-bottom {
    width: 1px;
    height: 7px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

.candlestick-1 .candle-wick-top,
.candlestick-1 .candle-wick-bottom,
.candlestick-3 .candle-wick-top,
.candlestick-3 .candle-wick-bottom,
.candlestick-5 .candle-wick-top,
.candlestick-5 .candle-wick-bottom,
.candlestick-7 .candle-wick-top,
.candlestick-7 .candle-wick-bottom,
.candlestick-9 .candle-wick-top,
.candlestick-9 .candle-wick-bottom {
    background: var(--primary-color);
}

.candlestick-2 .candle-wick-top,
.candlestick-2 .candle-wick-bottom,
.candlestick-4 .candle-wick-top,
.candlestick-4 .candle-wick-bottom,
.candlestick-6 .candle-wick-top,
.candlestick-6 .candle-wick-bottom,
.candlestick-8 .candle-wick-top,
.candlestick-8 .candle-wick-bottom,
.candlestick-10 .candle-wick-top,
.candlestick-10 .candle-wick-bottom {
    background: #ff416c;
}

.candle-wick-top {
    top: 0;
}

.candle-wick-bottom {
    bottom: 0;
}

/* Trading Icons */
.trading-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    animation: iconFloat 5s ease-in-out infinite;
    opacity: 0.2;
}

.trading-icon-1 {
    top: 12%;
    right: 8%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 0s;
}

.trading-icon-2 {
    top: 22%;
    left: 3%;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 1s;
}

.trading-icon-3 {
    top: 32%;
    right: 12%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 2s;
}

.trading-icon-4 {
    top: 42%;
    left: 7%;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 3s;
}

.trading-icon-5 {
    top: 52%;
    right: 5%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 1.5s;
}

.trading-icon-6 {
    top: 62%;
    left: 10%;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 2.5s;
}

.trading-icon-7 {
    top: 72%;
    right: 8%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 3.5s;
}

.trading-icon-8 {
    top: 82%;
    left: 5%;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 4s;
}

.trading-icon-9 {
    bottom: 12%;
    right: 15%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 0.5s;
}

.trading-icon-10 {
    bottom: 2%;
    left: 12%;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 1.2s;
}

/* Price Numbers */
.price-number {
    position: absolute;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 2px;
    animation: priceFloat 5s ease-in-out infinite;
    opacity: 0.2;
}

.price-number-1 {
    top: 10%;
    left: 8%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 0s;
}

.price-number-2 {
    top: 20%;
    right: 12%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 1s;
}

.price-number-3 {
    top: 30%;
    left: 15%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 2s;
}

.price-number-4 {
    top: 40%;
    right: 8%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 3s;
}

.price-number-5 {
    top: 50%;
    left: 12%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 1.5s;
}

.price-number-6 {
    top: 60%;
    right: 15%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 2.5s;
}

.price-number-7 {
    top: 70%;
    left: 6%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 3.5s;
}

.price-number-8 {
    top: 80%;
    right: 10%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 4s;
}

.price-number-9 {
    bottom: 20%;
    left: 18%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 0.5s;
}

.price-number-10 {
    bottom: 10%;
    right: 5%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 1.2s;
}

.price-number-11 {
    top: 15%;
    left: 25%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 0.8s;
}

.price-number-12 {
    top: 35%;
    right: 20%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 1.8s;
}

.price-number-13 {
    top: 55%;
    left: 22%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 2.8s;
}

.price-number-14 {
    top: 75%;
    right: 25%;
    color: #ff416c;
    background: rgba(255, 65, 108, 0.1);
    animation-delay: 3.8s;
}

.price-number-15 {
    bottom: 5%;
    left: 8%;
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
    animation-delay: 0.3s;
}

/* Trading Signals */
.trading-signal {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    animation: signalPulse 4s ease-in-out infinite;
    opacity: 0.2;
}

.signal-buy {
    top: 15%;
    left: 3%;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 0s;
}

.signal-sell {
    top: 25%;
    right: 3%;
    background: rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 1.5s;
}

.signal-buy-2 {
    top: 45%;
    left: 2%;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 0.5s;
}

.signal-sell-2 {
    top: 55%;
    right: 2%;
    background: rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 2s;
}

.signal-buy-3 {
    top: 75%;
    left: 4%;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 1s;
}

.signal-sell-3 {
    top: 85%;
    right: 4%;
    background: rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 2.5s;
}

.signal-buy-4 {
    bottom: 15%;
    left: 1%;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    animation-delay: 0.8s;
}

.signal-sell-4 {
    bottom: 5%;
    right: 1%;
    background: rgba(255, 65, 108, 0.2);
    color: #ff416c;
    animation-delay: 3s;
}

/* Trading Dots */
.trading-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
    opacity: 0.2;
}

.trading-dot-1 {
    top: 18%;
    left: 20%;
    background: var(--primary-color);
    animation-delay: 0s;
}

.trading-dot-2 {
    top: 28%;
    right: 18%;
    background: #ff416c;
    animation-delay: 0.5s;
}

.trading-dot-3 {
    top: 38%;
    left: 25%;
    background: var(--primary-color);
    animation-delay: 1s;
}

.trading-dot-4 {
    top: 48%;
    right: 22%;
    background: #ff416c;
    animation-delay: 1.5s;
}

.trading-dot-5 {
    top: 58%;
    left: 18%;
    background: var(--primary-color);
    animation-delay: 2s;
}

.trading-dot-6 {
    top: 68%;
    right: 25%;
    background: #ff416c;
    animation-delay: 2.5s;
}

.trading-dot-7 {
    top: 78%;
    left: 22%;
    background: var(--primary-color);
    animation-delay: 3s;
}

.trading-dot-8 {
    bottom: 18%;
    right: 18%;
    background: #ff416c;
    animation-delay: 0.2s;
}

.trading-dot-9 {
    bottom: 8%;
    left: 15%;
    background: var(--primary-color);
    animation-delay: 0.8s;
}

.trading-dot-10 {
    bottom: 3%;
    right: 12%;
    background: #ff416c;
    animation-delay: 1.2s;
}

/* Trading Bars */
.trading-bar {
    position: absolute;
    width: 2px;
    height: 20px;
    animation: barGrow 4s ease-in-out infinite;
    opacity: 0.2;
}

.trading-bar-1 {
    top: 12%;
    left: 30%;
    background: var(--primary-color);
    animation-delay: 0s;
}

.trading-bar-2 {
    top: 22%;
    right: 28%;
    background: #ff416c;
    animation-delay: 0.5s;
}

.trading-bar-3 {
    top: 42%;
    left: 35%;
    background: var(--primary-color);
    animation-delay: 1s;
}

.trading-bar-4 {
    top: 52%;
    right: 32%;
    background: #ff416c;
    animation-delay: 1.5s;
}

.trading-bar-5 {
    top: 72%;
    left: 28%;
    background: var(--primary-color);
    animation-delay: 2s;
}

.trading-bar-6 {
    top: 82%;
    right: 35%;
    background: #ff416c;
    animation-delay: 2.5s;
}

.trading-bar-7 {
    bottom: 12%;
    left: 32%;
    background: var(--primary-color);
    animation-delay: 3s;
}

.trading-bar-8 {
    bottom: 2%;
    right: 28%;
    background: #ff416c;
    animation-delay: 3.5s;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes chartLineMove {
    0% { transform: translateX(0); opacity: 0; }
    50% { opacity: 0.2; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes candlestickPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes priceFloat {
    0%, 100% { transform: translateY(0); opacity: 0.2; }
    50% { transform: translateY(-5px); opacity: 0.2; }
}

@keyframes signalPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); opacity: 0.2; }
    50% { transform: scaleY(1.5); opacity: 0.2; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.trading-chart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-content {
        margin-bottom: 2rem;
    }
    
    .demo-chart {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-section {
        padding: 40px 0;
    }
    
    .demo-content {
        margin-bottom: 1.5rem;
    }
    
    .demo-chart {
        margin-top: 1.5rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 1.5rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.analiz-ozet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-notice {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analiz-content {
    padding: 2rem;
}

.hisse-bilgi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hisse-kod {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hisse-adi {
    font-size: 1rem;
    color: var(--text-secondary);
}

.mini-chart-container {
    height: 100px;
    margin: 1rem 0;
}

.fiyat-bilgi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fiyat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.degisim {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.degisim.positive {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
}

.degisim.negative {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.analiz-detaylar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.detay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.detay-item .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detay-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-primary);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h5 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1e1e2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    color: #a0a0a0;
    font-size: 2.5rem;
    opacity: 0.5;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title {
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.blog-title a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-author {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more { 
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%); 
    color: #1a202c; 
    padding: 0.5rem 1rem; 
    border-radius: 20px; 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3); 
    color: #1a202c; 
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.1) 100%);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-advantage {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #1a202c;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.plan-code {
    margin-bottom: 20px;
}

.plan-code small {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.pricing-features {
    margin: 1rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #e9ecef;
}

.feature-item i {
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 20px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.duration {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-advantage {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #1a202c;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.plan-code {
    margin-bottom: 20px;
}

.plan-code small {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-footer .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.pricing-note {
    margin-top: 40px;
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* Browser Specific Fixes */
/* Chrome/Safari/Edge */
@supports (-webkit-appearance: none) {
    .pricing-card {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* Firefox */
@supports (-moz-appearance: none) {
    .pricing-card {
        background: rgba(17, 17, 17, 0.95);
    }
}

/* Internet Explorer Fallback */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .pricing-card {
        background: #111111 !important;
        border: 2px solid #333333 !important;
    }
    
    .pricing-card:hover {
        background: #0a0a0a !important;
    }
    
    .pricing-card.popular {
        background: linear-gradient(135deg, #111111 0%, #00ff88 0.1) !important;
    }
}

/* Mobile Safari Fixes */
@supports (-webkit-touch-callout: none) {
    .pricing-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0 20px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
    pointer-events: none;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-cta {
    margin-top: 1.5rem;
}

.footer-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.footer-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-title i {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover { color: #0077b5; }
.social-link.twitter:hover { color: #1da1f2; }
.social-link.youtube:hover { color: #ff0000; }
.social-link.instagram:hover { color: #e4405f; }
.social-link.email:hover { color: #00ff88; }

/* Footer Social Section */
.footer-social-section {
    flex: 1;
    max-width: 400px;
    margin-left: 3rem;
}

.footer-social-content {
    text-align: left;
}

.footer-social-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-social-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    max-width: 500px;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social-section {
        margin-left: 0;
        max-width: 100%;
    }
    
    .footer-social-content {
        text-align: center;
    }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: calc(100vh - 20px);
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 160px;
        padding-bottom: 80px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        margin-bottom: 2rem;
    }
}
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .analiz-detaylar {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation - DEVRE DIŞI */
.loading {
    opacity: 1 !important; /* Zorla görünür yap */
    transform: none !important; /* Transform'u kaldır */
    transition: none !important; /* Animasyonu kapat */
}

.loading.loaded {
    opacity: 1 !important;
    transform: none !important;
}

/* Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card:hover .author-avatar-placeholder {
    transform: scale(1.1);
}

.analiz-ozet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Blog Cards */
.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1e1e2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    color: #a0a0a0;
    font-size: 2.5rem;
    opacity: 0.5;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title {
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.blog-title a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-author {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more { 
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%); 
    color: #1a202c; 
    padding: 0.5rem 1rem; 
    border-radius: 20px; 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3); 
    color: #1a202c; 
}

/* ===== DEMO ANALIZ KARTI STILLERI ===== */
/* User-analizler.php ile birebir aynı renkler */
.demo-analysis-card {
    background: #20232A;
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    min-height: 400px;
}

.demo-analysis-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.stock-info h3 {
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    color: white;
    line-height: 1.4;
}

.stock-code {
    background: transparent;
    color: white;
    padding: 0;
    border-radius: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.price-section {
    text-align: right;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.price-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.price-change.positive {
    color: #38ef7d;
}

.price-change.negative {
    color: #ff416c;
}

.price-change.neutral {
    color: #f093fb;
}

/* Indicators Grid */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.indicator-item {
    text-align: center;
    padding: 1rem;
    background: #2A2E35;
    border-radius: 8px;
    border: none;
}

.indicator-label {
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.indicator-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.indicator-value.trend-up {
    color: #38ef7d;
}

.indicator-value.trend-down {
    color: #ff416c;
}

.indicator-value.rsi-positive {
    color: #38ef7d;
}

.indicator-value.rsi-negative {
    color: #ff416c;
}

.indicator-value.rsi-neutral {
    color: #f093fb;
}

.indicator-value.risk-low {
    color: #38ef7d;
}

.indicator-value.risk-medium {
    color: #f093fb;
}

.indicator-value.risk-high {
    color: #ff416c;
}

.indicator-value.macd-positive {
    color: #38ef7d;
}

.indicator-value.macd-negative {
    color: #ff416c;
}

.indicator-value.volume-high {
    color: #38ef7d;
}

.indicator-value.volume-low {
    color: #ff416c;
}

.indicator-value.volatility-medium {
    color: #f093fb;
}

.indicator-value.volatility-high {
    color: #ff416c;
}

/* Summary Section */
.summary-section {
    margin-bottom: 1rem;
}

.summary-text {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Demo Disclaimer */
.demo-disclaimer {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
}

.demo-disclaimer small {
    color: #60a5fa;
    font-size: 0.7rem;
    font-weight: 500;
}

.demo-disclaimer i {
    margin-right: 0.25rem;
}

/* Action Buttons */
.card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-view-analysis {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    justify-content: center;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-view-analysis:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    color: white;
}

/* ===== MARKET OVERVIEW SECTION STYLES ===== */
.market-overview-section {
    padding: 40px 0;
    background: transparent;
    position: relative;
}

/* Market Cards */
.market-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.75rem;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.market-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.market-card:active {
    transform: translateY(-1px) scale(1.01);
}

.market-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.market-title {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.market-card-body {
    margin-bottom: 0.75rem;
}

.market-value {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.market-change {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.market-change.positive {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.market-change.negative {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}


/* Mobil Market Kartları */
.market-card-mobile {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.6rem;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.market-card-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.market-title-mobile {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.live-dot-mobile {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.market-card-body-mobile {
    text-align: center;
}

.market-value-mobile {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.market-change-mobile {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.market-change-mobile.positive {
    color: #48bb78;
}

.market-change-mobile.negative {
    color: #f56565;
}

/* Para birimi sembolleri için özel stil */
.currency-symbol {
    font-weight: 700;
    color: #667eea;
    font-size: 0.9em;
    margin-left: 2px;
}

.market-value .currency-symbol {
    font-size: 0.8em;
    opacity: 0.8;
}

.market-value-mobile .currency-symbol {
    font-size: 0.8em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-overview-section {
        padding: 30px 0;
    }
    
    .market-card-mobile {
        padding: 0.5rem;
    }
    
    .market-value-mobile {
        font-size: 0.9rem;
    }
    
    .market-change-mobile {
        font-size: 0.7rem;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .market-overview-section {
        padding: 20px 0;
    }
    
    .market-card {
        margin-bottom: 15px;
    }
    
    .demo-analysis-card {
        max-width: 100%;
    }
}

/* ===== DEMO CHART INFO STYLES ===== */
.chart-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-value.positive {
    color: #00ff88;
}

.stat-value.negative {
    color: #ff4757;
}

.stat-value.trend-up {
    color: #00ff88;
}

.stat-value.trend-down {
    color: #ff4757;
}

@media (max-width: 768px) {
    .chart-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-label {
        margin-bottom: 0;
    }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 136, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.author-verified {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #00ff88;
}

.author-verified i {
    font-size: 0.9rem;
}

/* İstatistikler */
.testimonials-stats {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-stats .stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    cursor: grab;
    user-select: none;
}

.testimonials-container:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(30% - 1rem);
    min-width: 0;
}


.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(0, 255, 136, 0.6);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(45% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        flex: 0 0 calc(90% - 0.5rem);
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonials-stats {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
}

/* Blog Section - Yeni Tasarım */
.blog-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: var(--primary-color);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    position: relative;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-image::before {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.blog-card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.1));
    opacity: 0.3;
}

.placeholder-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
    z-index: 3;
    position: relative;
    opacity: 1;
    transition: all 0.3s ease;
}

.placeholder-text {
    z-index: 3;
    position: relative;
}

.placeholder-text span {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a202c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.blog-card:hover .placeholder-icon {
    opacity: 1;
    transform: scale(1.1);
}

.blog-card:hover .placeholder-text span {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.blog-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.blog-category {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.blog-title {
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.blog-title a {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.blog-title a:hover {
    color: #00ff88;
    transform: translateX(5px);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.blog-read-more { 
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%); 
    color: #1a202c; 
    padding: 0.75rem 1.5rem; 
    border-radius: 25px; 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4); 
    color: #1a202c;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-card-body {
        padding: 1.5rem;
    }
    
    .blog-title a {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .blog-read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Blog excerpt - PHP ile sınırlandırıldı */

/* ===== COOKIE CONSENT POPUP ===== */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-popup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.cookie-consent-overlay.show .cookie-consent-popup {
    transform: translateY(0);
}

.cookie-consent-header {
    text-align: center;
    margin-bottom: 24px;
}

.cookie-consent-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--bg-primary);
}

.cookie-consent-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-consent-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-consent-content {
    margin-bottom: 24px;
}

.cookie-consent-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-consent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-consent-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-consent-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookie-consent-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.cookie-consent-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.cookie-consent-btn-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-consent-btn-settings:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.cookie-consent-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-consent-btn-decline:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: translateY(0);
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cookie-settings-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-settings-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.cookie-settings-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.cookie-settings-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-settings-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-settings-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-toggle.active {
    background: var(--primary-color);
}

.cookie-settings-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-settings-toggle.active::after {
    transform: translateX(26px);
}

.cookie-settings-item-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 24px;
        margin: 20px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        min-width: auto;
    }
    
    .cookie-settings-content {
        padding: 24px;
        margin: 20px;
    }
}

/* ===== YAZARLAR BÖLÜMÜ ===== */
.authors-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.authors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.authors-container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title p {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.authors-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.authors-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.author-card {
    flex: 0 0 300px;
    background: linear-gradient(145deg, rgba(44, 44, 44, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.author-card:hover::before {
    opacity: 1;
}

.author-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.author-bio {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-button {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.author-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    color: #1a1a1a;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #1a1a1a;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00ff88;
    transform: scale(1.2);
}

/* Authors Mobile Responsive */
@media (max-width: 768px) {
    .authors-section {
        padding: 2rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .author-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .authors-track {
        gap: 1rem;
    }
}

/* ===== MİNİMAL YAZARLAR BÖLÜMÜ ===== */
.minimal-authors-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.author-mini-card {
    background: linear-gradient(145deg, rgba(44, 44, 44, 0.6) 0%, rgba(30, 30, 30, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.author-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.author-mini-card:hover::before {
    opacity: 1;
}

.author-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.2);
}

.author-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.author-mini-card h6 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.author-mini-card a {
    color: #00ff88;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.author-mini-card a:hover {
    color: #00d4ff;
}

/* Minimal Authors Mobile Responsive */
@media (max-width: 768px) {
    .minimal-authors-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .authors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .author-mini-card {
        padding: 0.8rem;
    }
    
    .author-mini-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .author-mini-card h6 {
        font-size: 0.8rem;
    }
    
    .author-mini-card a {
        font-size: 0.7rem;
    }
}

/* ===== VOLUME SPIKES SECTION (HACİM PATLAMALARI) ===== */
.volume-spikes-section {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.volume-spikes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.volume-section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-section-title i {
    color: #ff5722;
    animation: bolt-pulse 2s infinite;
}

@keyframes bolt-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Volume Spike Card - Desktop */
.volume-spike-card {
    background: linear-gradient(145deg, rgba(255, 87, 34, 0.1), rgba(255, 152, 0, 0.05));
    border: 2px solid rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.volume-spike-card:hover {
    border-color: rgba(255, 87, 34, 0.6);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
    transform: translateY(-5px);
}

.volume-spike-badge {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: fire-flicker 1.5s infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.stock-name-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-label-small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.volume-multiplier {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 152, 0, 0.2));
    color: #ff5722;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.volume-multiplier i {
    font-size: 0.8rem;
}

/* Volume Spike Card - Mobile */
.volume-spike-card-mobile {
    background: linear-gradient(145deg, rgba(255, 87, 34, 0.1), rgba(255, 152, 0, 0.05));
    border: 1.5px solid rgba(255, 87, 34, 0.3);
}

.volume-spike-badge-mobile {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    animation: fire-flicker 1.5s infinite;
}

.stock-name-small-mobile {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-label-small-mobile {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1px;
}

.volume-multiplier-mobile {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 152, 0, 0.2));
    color: #ff5722;
    padding: 3px 7px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.volume-multiplier-mobile i {
    font-size: 0.65rem;
}

/* View All Button */
.view-all-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateX(5px);
}

/* Volume Info Styles */
.volume-info {
    margin: 0.5rem 0;
    font-size: 0.75rem;
}

.volume-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.volume-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.volume-value {
    color: var(--primary-color);
    font-weight: 600;
}

.volume-info-mobile {
    margin: 0.4rem 0;
    font-size: 0.7rem;
}

.volume-item-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.volume-label-mobile {
    color: var(--text-secondary);
    font-weight: 500;
}

.volume-value-mobile {
    color: var(--primary-color);
    font-weight: 600;
}

/* Average Volume Section Styles */
.average-volume-section {
    padding: 4rem 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.average-volume-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.average-volume-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.average-volume-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.average-volume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.average-volume-card:hover::before {
    opacity: 1;
}

.average-volume-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.average-volume-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    color: var(--bg-primary);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.average-volume-card-mobile {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.average-volume-card-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.average-volume-card-mobile:hover::before {
    opacity: 1;
}

.average-volume-card-mobile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.average-volume-badge-mobile {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    color: var(--bg-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.6rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* Volume Analysis Section Styles */
.volume-analysis-section {
    padding: 3rem 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.volume-analysis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.volume-section-header {
    margin-bottom: 1rem;
}

.volume-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.volume-section-title i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.average-volume-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.average-volume-section-title i {
    color: #00ff88;
    margin-right: 0.5rem;
}

/* Volume Analysis Cards - Küçük ve Eşit Boyut */
.volume-analysis-section .market-card,
.volume-analysis-section .volume-spike-card,
.volume-analysis-section .average-volume-card {
    padding: 1rem;
    height: 180px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.volume-analysis-section .market-card-header {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.volume-analysis-section .stock-code-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.volume-analysis-section .stock-code-price .market-title {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.volume-analysis-section .stock-code-price .market-value {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
}

.volume-analysis-section .market-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.volume-analysis-section .stock-name-small {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    line-height: 1.2;
    max-height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.volume-analysis-section .price-label-small {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.volume-analysis-section .market-value {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.volume-analysis-section .volume-info {
    margin: 0.3rem 0;
    font-size: 0.65rem;
}

.volume-analysis-section .volume-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.15rem;
}

.volume-analysis-section .volume-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.volume-analysis-section .volume-value {
    color: var(--primary-color);
    font-weight: 600;
}

.volume-analysis-section .volume-multiplier {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* Mobile Volume Analysis Cards */
.volume-analysis-section .market-card-mobile,
.volume-analysis-section .volume-spike-card-mobile,
.volume-analysis-section .average-volume-card-mobile {
    padding: 0.8rem;
    height: 160px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.volume-analysis-section .market-card-header-mobile {
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.volume-analysis-section .stock-code-price-mobile {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.volume-analysis-section .stock-code-price-mobile .market-title-mobile {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

.volume-analysis-section .stock-code-price-mobile .market-value-mobile {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.volume-analysis-section .market-title-mobile {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.volume-analysis-section .stock-name-small-mobile {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    line-height: 1.2;
    max-height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.volume-analysis-section .price-label-small-mobile {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.volume-analysis-section .market-value-mobile {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.volume-analysis-section .volume-info-mobile {
    margin: 0.3rem 0;
    font-size: 0.6rem;
}

.volume-analysis-section .volume-item-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.15rem;
}

.volume-analysis-section .volume-label-mobile {
    color: var(--text-secondary);
    font-weight: 500;
}

.volume-analysis-section .volume-value-mobile {
    color: var(--primary-color);
    font-weight: 600;
}

.volume-analysis-section .volume-multiplier-mobile {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .volume-analysis-section {
        padding: 2rem 0;
    }
    
    .volume-section-title,
    .average-volume-section-title {
        font-size: 1.1rem;
    }
    
    .view-all-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 0.5rem;
    }
}

/* Modal Styles */
.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 1.5rem 1rem;
}

.modal-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-body {
    padding: 1.5rem;
    color: var(--text-primary);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem 1.5rem;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-backdrop.show {
    opacity: 0.6;
}

/* Alert Styles for Modal Triggers */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alert-info {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    color: #ffc107;
    border-left: 4px solid #ffc107;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
    color: #198754;
    border-left: 4px solid #198754;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Custom Modal Buttons */
.modal-footer .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal Icon Styles */
.modal-title i {
    font-size: 1.2rem;
}

.modal-body i.fa-3x {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
}