/* ═══════════════════════════════════════════════════════════════════════════════
   📄 INDEX.CSS - Ana Sayfa Stilleri
   90 Dakika Analiz - https://90dkanaliz.com
   ═══════════════════════════════════════════════════════════════════════════════ */

/* KAZANAN KUPONLAR ŞERİDİ */
.winners-bar{background:linear-gradient(90deg,#0d1410 0%,rgba(74,222,128,0.1) 50%,#0d1410 100%);border-bottom:1px solid rgba(74,222,128,0.2);padding:12px 0;overflow:hidden;}
.winners-track{display:flex;animation:winnersScroll 20s linear infinite;width:fit-content;}
.winners-track:hover{animation-play-state:paused;}
@keyframes winnersScroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.winner-item{display:flex;align-items:center;gap:10px;padding:0 30px;white-space:nowrap;}
.winner-icon{font-size:20px;}
.winner-date{color:#6b7280;font-size:13px;}
.winner-text{font-size:14px;font-weight:600;color:#fff;}
.winner-type{color:#4ade80;}
.winner-odds{background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#000;padding:4px 12px;border-radius:6px;font-weight:700;font-size:13px;}
.winner-divider{width:4px;height:4px;background:#4ade80;border-radius:50%;margin:0 10px;}

/* ═══════════════════════════════════════════════════════════════════════════════
   ✨ GÖREV #152: KAYAN TİCKER ŞERİDİ
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero-ticker-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 50%, rgba(74, 222, 128, 0.1) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 30px;
    padding: 10px 0;
    position: relative;
}

.hero-ticker-wrapper::before,
.hero-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.hero-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #0a0f0d, transparent);
}

.hero-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #0a0f0d, transparent);
}

.hero-ticker {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-item::after {
    content: '•';
    margin-left: 30px;
    color: rgba(74, 222, 128, 0.3);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ✨ GÖREV #150 & #155: AI MOTOR DURUM GÖSTERGESİ
   ═══════════════════════════════════════════════════════════════════════════════ */
.ai-status-stat .hero-stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pulse {
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
}

.status-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 2px;
}

.status-dot-small {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-dot-small.pulse {
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ✨ GÖREV #158: GÜVEN BARI PULSE EFEKTİ (8.5+ için)
   ═══════════════════════════════════════════════════════════════════════════════ */
.confidence-bar.high-confidence::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    animation: glow-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(74, 222, 128, 0.5), 0 0 10px rgba(74, 222, 128, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(74, 222, 128, 0.8), 0 0 25px rgba(74, 222, 128, 0.5);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ✨ RESPONSIVE - TİCKER
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-ticker-wrapper {
        max-width: 100%;
        border-radius: 0;
        margin: 15px -20px;
        width: calc(100% + 40px);
    }

    .ticker-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }

    .status-text {
        font-size: 1rem;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding: 60px 40px 80px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, transparent 50%),
                linear-gradient(225deg, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #4ade80;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.2), transparent);
    animation: shimmer 2.5s infinite;
}

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

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(74, 222, 128, 0.1); }
    50% { box-shadow: 0 0 30px rgba(74, 222, 128, 0.3); }
}

.hero-badge .pulse {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
    animation: pulseNew 1.5s infinite;
}

.hero-badge .pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseNew {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.hero-badge .badge-icon {
    font-size: 1rem;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc { font-size: 1.1rem; color: #9ca3af; margin-bottom: 30px; line-height: 1.7; max-width: 500px; }

/* ==================== ANİMASYONLU İSTATİSTİK KARTLARI ==================== */
.hero-stats { display: flex; gap: 40px; margin-bottom: 30px; }

.hero-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.6s ease forwards;
    transition: all 0.3s ease;
    cursor: default;
}

/* Stagger animasyonu - sırayla belirir */
.hero-stat:nth-child(1) { animation-delay: 0.2s; }
.hero-stat:nth-child(2) { animation-delay: 0.4s; }
.hero-stat:nth-child(3) { animation-delay: 0.6s; }

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stat:hover {
    transform: scale(1.08);
}

.hero-stat:hover .hero-stat-value {
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ade80;
    transition: text-shadow 0.3s ease;
    position: relative;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.hero-stat:hover .hero-stat-label {
    color: #9ca3af;
}

.hero-buttons { display: flex; gap: 15px; }

.btn-hero {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero.primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.btn-hero.primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4); }

.btn-hero.secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.btn-hero.secondary:hover { background: rgba(255,255,255,0.1); }

/* Hero Card */
.hero-card {
    background: linear-gradient(145deg, rgba(17, 24, 20, 0.95), rgba(10, 15, 13, 0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 24px 24px 0 0;
}

.hero-card-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-card-title { font-size: 0.9rem; color: #4ade80; margin-bottom: 25px; display: flex; align-items: center; gap: 8px; }

.match-preview { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.team-preview { text-align: center; flex: 1; }
.team-preview img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 12px; }
.team-preview .name { font-weight: 700; color: #fff; font-size: 1.1rem; }
.match-vs { text-align: center; padding: 0 30px; }
.match-vs .time { background: rgba(74, 222, 128, 0.15); color: #4ade80; padding: 12px 25px; border-radius: 20px; font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; display: inline-block; }
.match-vs .league { font-size: 0.85rem; color: #6b7280; }

.predictions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }

.pred-item {
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
}

.pred-item.locked { background: rgba(107, 114, 128, 0.1); border-color: rgba(107, 114, 128, 0.2); }
.pred-item .label { font-size: 0.7rem; color: #6b7280; text-transform: uppercase; margin-bottom: 8px; }
.pred-item .value { font-size: 1.1rem; font-weight: 800; color: #4ade80; }
.pred-item.locked .value { color: #f59e0b; font-size: 1.3rem; }

.hero-card-btn {
    display: block;
    width: 100%;
    background: rgba(107, 114, 128, 0.3);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-card-btn.active { background: linear-gradient(135deg, #059669, #10b981); }

/* ==================== MAIN ==================== */
.main-container { max-width: 1400px; margin: 0 auto; padding: 40px; }
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; }

.section {
    background: linear-gradient(145deg, #111814, #0a0f0d);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-title { font-size: 1.1rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 12px; }
.section-title i { width: 40px; height: 40px; background: rgba(74, 222, 128, 0.15); color: #4ade80; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.section-link { color: #4ade80; text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.section-body { padding: 0; }

/* ==================== ANALİZ TABLOSU ==================== */
.analysis-table { width: 100%; }

.analysis-row {
    display: grid;
    grid-template-columns: 50px 50px 1fr 130px 70px 45px;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    gap: 12px;
}

.analysis-row:hover { background: rgba(74, 222, 128, 0.03); }
.analysis-row:last-child { border-bottom: none; }

.analysis-logo { width: 42px; height: 42px; object-fit: contain; }
.analysis-info { min-width: 0; }
.analysis-info .teams { font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.analysis-info .meta { font-size: 0.8rem; color: #6b7280; }

.analysis-prediction {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.analysis-prediction:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(74, 222, 128, 0.2); }
.analysis-prediction.locked { background: rgba(107, 114, 128, 0.15); color: #6b7280; }
.analysis-prediction.locked i { color: #f59e0b; }

.analysis-confidence { font-weight: 700; color: #4ade80; font-size: 0.9rem; }
.analysis-status { text-align: center; }
.analysis-status i { font-size: 1rem; }
.analysis-status i.fa-check-circle { color: #4ade80; }
.analysis-status i.fa-times-circle { color: #ef4444; }
.analysis-status i.fa-clock { color: #fbbf24; }

/* Analiz yok mesajı */
.no-analysis-message {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}
.no-analysis-message i {
    font-size: 3rem;
    color: #374151;
    margin-bottom: 15px;
}
.no-analysis-message h3 {
    color: #9ca3af;
    margin-bottom: 10px;
}

/* ==================== KUPONLAR ==================== */
.coupons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 25px; }

.coupon-card {
    background: linear-gradient(145deg, #111814, #0a0f0d);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.coupon-card.gunun::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.coupon-card.vip::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.coupon-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.coupon-title { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.coupon-title .icon { width: 32px; height: 32px; background: rgba(74, 222, 128, 0.15); color: #4ade80; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.coupon-card.gunun .coupon-title .icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.coupon-card.vip .coupon-title .icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.coupon-odds { background: rgba(74, 222, 128, 0.15); color: #4ade80; padding: 8px 16px; border-radius: 20px; font-weight: 800; }
.coupon-matches { margin-bottom: 20px; }

.coupon-match { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem; }
.coupon-match:last-child { border-bottom: none; }
.coupon-match .teams { color: #e5e7eb; font-weight: 500; }
.coupon-match .bet { background: rgba(74, 222, 128, 0.1); color: #4ade80; font-weight: 700; padding: 4px 10px; border-radius: 6px; font-size: 0.8rem; }
.coupon-match .bet.locked { background: rgba(107, 114, 128, 0.15); color: #f59e0b; }

.coupon-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.06); }
.coupon-confidence { font-size: 0.9rem; color: #6b7280; }
.coupon-confidence strong { color: #4ade80; font-size: 1.1rem; }
.coupon-date { font-size: 0.8rem; color: #6b7280; }

/* VIP Kupon Locked Overlay */
.vip-coupon-locked {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    z-index: 10;
    text-align: center;
}

.vip-coupon-locked i { font-size: 2.5rem; color: #f59e0b; margin-bottom: 12px; }
.vip-coupon-locked p { color: #fff; font-weight: 700; margin-bottom: 15px; font-size: 1.2rem; }
.vip-coupon-locked .btn-vip-overlay {
    padding: 12px 35px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.vip-coupon-locked .btn-vip-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Kupon yok mesajı */
.no-coupon-home {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}
.no-coupon-home i {
    font-size: 2.5rem;
    color: #374151;
    margin-bottom: 15px;
}

/* ==================== SIDEBAR ==================== */
.sidebar-home { display: flex; flex-direction: column; gap: 20px; }

.widget { background: linear-gradient(145deg, #111814, #0a0f0d); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
.widget-header { padding: 18px 22px; background: rgba(0,0,0,0.3); border-bottom: 1px solid rgba(255,255,255,0.04); }
.widget-title { font-size: 1rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.widget-title i { color: #4ade80; }
.widget-body { padding: 20px 22px; }

.vip-widget { background: linear-gradient(145deg, #1a1408, #0f1a0f); border-color: rgba(245, 158, 11, 0.2); }
.vip-widget .widget-header { background: rgba(245, 158, 11, 0.1); }
.vip-widget .widget-title { color: #f59e0b; }
.vip-widget .widget-title i { color: #f59e0b; }

.vip-content { text-align: center; }
.vip-icon { font-size: 3rem; margin-bottom: 15px; }
.vip-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.vip-desc { color: #9ca3af; font-size: 0.85rem; margin-bottom: 20px; }
.vip-features { text-align: left; margin-bottom: 20px; }
.vip-feature { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: #9ca3af; font-size: 0.9rem; }
.vip-feature i { color: #f59e0b; }
.vip-price { font-size: 2.5rem; font-weight: 900; color: #f59e0b; margin-bottom: 20px; }
.vip-price span { font-size: 1rem; color: #6b7280; font-weight: 400; }
.vip-btn { display: block; width: 100%; background: linear-gradient(135deg, #d97706, #f59e0b); color: #fff; padding: 14px; border-radius: 12px; text-align: center; text-decoration: none; font-weight: 700; transition: all 0.3s; }
.vip-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }

.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.stat-row:last-child { border-bottom: none; }
.stat-label { color: #9ca3af; font-size: 0.9rem; }
.stat-value { font-weight: 700; }
.stat-value.green { color: #4ade80; }
.stat-value.red { color: #ef4444; }
.stat-value.yellow { color: #fbbf24; }

.progress-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 15px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #4ade80, #22c55e); border-radius: 4px; transition: width 1s ease; }

/* Responsive */
@media (max-width: 1200px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-card { order: 2; max-width: 550px; margin: 0 auto; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar-home { display: grid; grid-template-columns: repeat(2, 1fr); }
    .coupons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 40px 20px 60px; }
    .hero-title { font-size: 2.5rem; }
    .main-container { padding: 20px; }
    .coupons-grid { grid-template-columns: 1fr; }
    .sidebar-home { grid-template-columns: 1fr; }
    .vip-banner { flex-direction: column; text-align: center; }
    .vip-banner-stats { justify-content: center; }
    .predictions-grid { grid-template-columns: repeat(2, 1fr); }
    .analysis-row { grid-template-columns: 35px 35px 1fr 100px 50px 35px; padding: 12px 15px; gap: 8px; }
    .analysis-logo { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
    .sidebar-home { padding: 0; }
    .widget-body { padding: 15px; }
    .vip-price { font-size: 2rem; }
    .vip-features { font-size: 0.8rem; }
    .hero-stat-value { font-size: 2rem; }
    .hero-stats { gap: 25px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ✨ GÖREV #153: BUZLU CAM PAYWALL - V3 (TAM DÜZELTME)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ========== HERO CARD PAYWALL ========== */

/* Predictions wrapper - TAHMİNLER İÇİN AYRI ALAN */
.hero-predictions-locked {
    position: relative;
    margin-top: 25px;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-predictions-locked .teaser-badge {
    background: rgba(74, 222, 128, 0.15);
    border: 1px dashed rgba(74, 222, 128, 0.4);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-predictions-locked .teaser-badge i { color: #f97316; }

.hero-predictions-locked .fomo-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-predictions-locked .fomo-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-predictions-locked .fomo-tag i { color: #4ade80; font-size: 0.75rem; }

.hero-predictions-locked .cta-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
    border: none;
    padding: 14px 45px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-predictions-locked .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

.hero-predictions-locked .price-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-predictions-locked .price-text strong { color: #4ade80; }

/* ========== KUPON KARTLARI PAYWALL ========== */

.coupon-card {
    position: relative;
    overflow: hidden;
}

/* Kupon içeriği bulanık */
.coupon-card.locked .coupon-header,
.coupon-card.locked .coupon-matches,
.coupon-card.locked .coupon-footer {
    filter: blur(6px);
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

/* Kupon Overlay - Yarı şeffaf */
.coupon-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(10, 15, 13, 0.75);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.coupon-blur-overlay i {
    font-size: 2.5rem;
    color: #4ade80;
}

.coupon-blur-overlay.vip i {
    color: #f59e0b;
}

.coupon-blur-overlay p {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.coupon-blur-overlay .btn-unlock {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-blur-overlay.vip .btn-unlock {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.coupon-blur-overlay .btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.35);
}

.coupon-blur-overlay.vip .btn-unlock:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-predictions-locked {
        padding: 20px 15px;
        min-height: 160px;
        gap: 12px;
    }

    .hero-predictions-locked .teaser-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .hero-predictions-locked .fomo-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-predictions-locked .cta-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .coupon-blur-overlay i {
        font-size: 2rem;
    }

    .coupon-blur-overlay p {
        font-size: 1rem;
    }

    .coupon-blur-overlay .btn-unlock {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
