.tahminler-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 0 0 40px;
    position: relative;
    overflow: hidden;
}

.tahminler-hero::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(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tahminler Section */
.tahminler-section {
    padding: 60px 0;
    background: var(--bg);
}

.tahminler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Tahmin Cards */
.tahmin-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tahmin-card.vip-card {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
    border-color: rgba(251, 191, 36, 0.2);
}

.tahmin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tahmin-card.vip-card::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.tahmin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.tahmin-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 20px 20px 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.vip {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
}

.card-badge.free {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.card-date {
    text-align: right;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.card-date .date {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.card-date .time {
    font-size: 12px;
    opacity: 0.7;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-item.premium {
    color: #fbbf24;
}

.stat-item svg {
    opacity: 0.8;
}

.card-footer {
    padding: 0 20px 20px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px -20px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-btn::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;
}

.card-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-btn:hover::before {
    left: 100%;
}

/* No Predictions */
.no-predictions {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px dashed var(--border);
}

.no-predictions-icon {
    margin-bottom: 24px;
    color: var(--muted);
    opacity: 0.5;
}

.no-predictions h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.no-predictions p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .tahminler-hero {
        padding: 0 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .tahminler-section {
        padding: 40px 0;
    }
    
    .tahminler-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tahmin-card {
        border-radius: 12px;
    }
    
    .card-header {
        padding: 16px 16px -1;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .card-date {
        text-align: left;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-footer {
        padding: 0 16px 16px;
    }
    
    .no-predictions {
        padding: 60px 20px;
    }
    
    .no-predictions-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .no-predictions h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tahminler-grid {
        grid-template-columns: 1fr;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 8px;
    }
}/
* Spor türü stat item'ları */
.stat-item.sport-futbol {
    color: #10b981;
    font-size: 12px;
}

.stat-item.sport-basketbol {
    color: #f59e0b;
    font-size: 12px;
}

.stat-item span {
    margin-right: 4px;
}