.update-hero {
    background: radial-gradient(circle at center top, #0f172a 0%, #1e1b4b 100%);
    padding: 140px 0 100px;
    position: relative;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-particles {
    position: absolute; inset: 0; opacity: 0.1;
    background-image: radial-gradient(#60a5fa 1px, transparent 1px);
    background-size: 30px 30px; pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px;
}
.hero-desc {
    color: #cbd5e1; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px;
}

/* İstatistikler */
.stats-row {
    display: flex; justify-content: center; gap: 40px; margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-val { font-size: 2rem; font-weight: 800; color: white; display: block; }
.stat-label { font-size: 0.9rem; color: #64748b; text-transform: uppercase; font-weight: 600; }


/* 2. TIMELINE BODY */
.timeline-section {
    background: #f8fafc; padding: 80px 0 120px;
}
.container-tight { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Filtre Butonları */
.filter-tabs {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 60px; flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 24px; border-radius: 12px; font-weight: 600; color: #64748b;
    background: white; border: 1px solid #e2e8f0; cursor: pointer; transition: 0.3s;
}
.tab-btn:hover, .tab-btn.active {
    background: #0f172a; color: white; border-color: #0f172a;
}

/* Timeline Çizgisi */
.timeline-wrap { position: relative; padding-left: 40px; }
.timeline-wrap::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: #e2e8f0; border-radius: 2px;
}

/* Timeline Kartları */
.update-card {
    background: white; border: 1px solid #e2e8f0; border-radius: 20px;
    padding: 30px; margin-bottom: 40px; position: relative;cursor: pointer;
    transition: 0.3s;
}
.update-card:hover {
    transform: translateY(-5px); border-color: #3b82f6;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}

/* Sol Taraftaki Nokta */
.card-dot {
    position: absolute; left: -49px; top: 30px;
    width: 20px; height: 20px; border-radius: 50%;
    background: white; border: 4px solid #cbd5e1; z-index: 10;
    transition: 0.3s;
}
.update-card:hover .card-dot { border-color: #3b82f6; transform: scale(1.2); }

/* Kart İçeriği */
.card-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;
    flex-wrap: wrap; gap: 10px;
}
.version-tag {
    font-family: monospace; font-weight: 700; color: #3b82f6; background: #eff6ff;
    padding: 4px 10px; border-radius: 6px; font-size: 0.9rem;
}
.date-text { color: #94a3b8; font-size: 0.9rem; font-weight: 500; }

.update-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 15px; }

.change-list { list-style: none; padding: 0; }
.change-item {
    display: flex; gap: 12px; margin-bottom: 10px; color: #475569; line-height: 1.6;
}
.ci-icon { flex-shrink: 0; margin-top: 4px; }

/* Tip Renkleri */
.type-new { color: #22c55e; } /* Yeni Özellik */
.type-fix { color: #f59e0b; } /* Düzeltme */
.type-upd { color: #3b82f6; } /* Güncelleme */

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .timeline-wrap { padding-left: 20px; }
    .timeline-wrap::before { left: 0; }
    .card-dot { left: -29px; width: 16px; height: 16px; border-width: 3px; }
    .update-card { padding: 20px; }
}

/* 4. PAGINATION */
.pagination {
    grid-column: span 2; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 10px; 
    margin-top: 60px; 
    padding-top: 40px; 
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap; /* Mobilde taşarsa aşağı insin */
}
.page-link {
    width: 40px; height: 40px; 
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #e2e8f0; border-radius: 8px; 
    font-weight: 600; cursor: pointer; transition: 0.3s;
    color: #111111; text-decoration: none;
}
.page-link:hover, .page-link.active {
    background: #111111; color: white; border-color: #111111;
}