/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    font-family: system-ui, -apple-system, sans-serif;
    color: #f1f5f9;
    min-height: 100vh;
}

/* Navbar (Menü) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* Sayaç Alanı */
.counters-section {
    padding: 60px 20px;
}

.counters-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

/* 1. KART (Mavi/Mor Konsepti) */
.custom-counter-card {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    border-radius: 16px;
    padding: clamp(20px, 5vw, 30px) clamp(15px, 4vw, 20px);
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(71, 118, 230, 0.3);
    width: 90%;
    max-width: 320px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(71, 118, 230, 0.5);
}

/* 2. KART (Mat Kırmızı Konsepti) */
.tyt-card {
    background: linear-gradient(135deg, #9b1b30 0%, #c62828 100%);
    box-shadow: 0 10px 25px rgba(155, 27, 48, 0.3);
}

.tyt-card:hover {
    box-shadow: 0 15px 35px rgba(155, 27, 48, 0.5);
}

/* Sayaç Yazı Tipi Detayları */
.counter-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
}

.counter-number {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.15); 
    padding: 10px;
    border-radius: 12px;
}

.time-val {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Makale/İçerik Alanları */
.content-section {
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.content-section h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.content-section p {
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Footer (Alt Bilgi) */
.footer {
    text-align: center;
    padding: 30px;
    background-color: rgba(0,0,0,0.3);
    color: #64748b;
    font-size: 0.9rem;
}

.footer a {
    color: #64748b;
    text-decoration: none;
}

.footer a:hover {
    color: #cbd5e1;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .content-section {
        width: 90%;
        padding: 20px;
    }
}