/* ============================================
   ZEHRA ÖĞRETMEN - EĞİTİM PDF SİTESİ
   Ana Stil Dosyası
   ============================================ */

/* Google Fonts - Türkçe karakter desteği ile */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary-color: #2AB7CA;
    --primary-dark: #1E9AAD;
    --secondary-color: #FF6B9D;
    --accent-blue: #4A90D9;
    --accent-pink: #FF6B9D;
    --accent-purple: #9B59B6;
    --accent-orange: #F39C12;
    --accent-green: #2ECC71;
    --accent-yellow: #F1C40F;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   DEKORATİF YILDIZLAR VE BENEKLER - YOĞUN VERSİYON
   ============================================ */

/* Ana içerik alanı için dekoratif arka plan */
.main-content,
.featured-section,
.subcategory-container,
.content-detail-container {
    position: relative;
}

/* Yoğun benek pattern - Ana layer */
.main-content::before,
.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        /* Sarı yıldızlar - Yoğun */
        radial-gradient(circle at 3% 8%, #FFD700 4px, transparent 4px),
        radial-gradient(circle at 12% 22%, #FFD700 3px, transparent 3px),
        radial-gradient(circle at 8% 45%, #FFD700 5px, transparent 5px),
        radial-gradient(circle at 18% 68%, #FFD700 3px, transparent 3px),
        radial-gradient(circle at 5% 88%, #FFD700 4px, transparent 4px),
        radial-gradient(circle at 92% 12%, #FFD700 4px, transparent 4px),
        radial-gradient(circle at 85% 35%, #FFD700 3px, transparent 3px),
        radial-gradient(circle at 95% 58%, #FFD700 5px, transparent 5px),
        radial-gradient(circle at 88% 82%, #FFD700 3px, transparent 3px),
        radial-gradient(circle at 97% 95%, #FFD700 4px, transparent 4px),
        /* Pembe yıldızlar - Yoğun */
        radial-gradient(circle at 22% 5%, #FF6B9D 3px, transparent 3px),
        radial-gradient(circle at 15% 32%, #FF6B9D 4px, transparent 4px),
        radial-gradient(circle at 25% 55%, #FF6B9D 3px, transparent 3px),
        radial-gradient(circle at 10% 78%, #FF6B9D 5px, transparent 5px),
        radial-gradient(circle at 20% 92%, #FF6B9D 3px, transparent 3px),
        radial-gradient(circle at 78% 8%, #FF6B9D 4px, transparent 4px),
        radial-gradient(circle at 82% 28%, #FF6B9D 3px, transparent 3px),
        radial-gradient(circle at 75% 52%, #FF6B9D 5px, transparent 5px),
        radial-gradient(circle at 88% 75%, #FF6B9D 3px, transparent 3px),
        radial-gradient(circle at 80% 98%, #FF6B9D 4px, transparent 4px),
        /* Mavi benekler - Yoğun */
        radial-gradient(circle at 35% 12%, #4A90D9 3px, transparent 3px),
        radial-gradient(circle at 42% 38%, #4A90D9 4px, transparent 4px),
        radial-gradient(circle at 32% 62%, #4A90D9 3px, transparent 3px),
        radial-gradient(circle at 45% 85%, #4A90D9 5px, transparent 5px),
        radial-gradient(circle at 38% 95%, #4A90D9 3px, transparent 3px),
        radial-gradient(circle at 62% 5%, #4A90D9 4px, transparent 4px),
        radial-gradient(circle at 58% 25%, #4A90D9 3px, transparent 3px),
        radial-gradient(circle at 65% 48%, #4A90D9 5px, transparent 5px),
        radial-gradient(circle at 55% 72%, #4A90D9 3px, transparent 3px),
        radial-gradient(circle at 68% 92%, #4A90D9 4px, transparent 4px),
        /* Yeşil benekler - Yoğun */
        radial-gradient(circle at 48% 18%, #2ECC71 4px, transparent 4px),
        radial-gradient(circle at 52% 42%, #2ECC71 3px, transparent 3px),
        radial-gradient(circle at 45% 65%, #2ECC71 5px, transparent 5px),
        radial-gradient(circle at 55% 88%, #2ECC71 3px, transparent 3px),
        radial-gradient(circle at 28% 28%, #2ECC71 3px, transparent 3px),
        radial-gradient(circle at 72% 38%, #2ECC71 4px, transparent 4px),
        radial-gradient(circle at 30% 48%, #2ECC71 3px, transparent 3px),
        radial-gradient(circle at 70% 68%, #2ECC71 5px, transparent 5px),
        /* Mor benekler - Yoğun */
        radial-gradient(circle at 15% 15%, #9B59B6 3px, transparent 3px),
        radial-gradient(circle at 85% 18%, #9B59B6 4px, transparent 4px),
        radial-gradient(circle at 25% 42%, #9B59B6 3px, transparent 3px),
        radial-gradient(circle at 75% 45%, #9B59B6 5px, transparent 5px),
        radial-gradient(circle at 35% 72%, #9B59B6 3px, transparent 3px),
        radial-gradient(circle at 65% 78%, #9B59B6 4px, transparent 4px),
        radial-gradient(circle at 12% 95%, #9B59B6 3px, transparent 3px),
        radial-gradient(circle at 90% 88%, #9B59B6 5px, transparent 5px),
        /* Turuncu benekler */
        radial-gradient(circle at 5% 35%, #F39C12 4px, transparent 4px),
        radial-gradient(circle at 95% 42%, #F39C12 3px, transparent 3px),
        radial-gradient(circle at 18% 58%, #F39C12 5px, transparent 5px),
        radial-gradient(circle at 82% 65%, #F39C12 3px, transparent 3px),
        radial-gradient(circle at 40% 8%, #F39C12 3px, transparent 3px),
        radial-gradient(circle at 60% 95%, #F39C12 4px, transparent 4px),
        /* Turkuaz benekler */
        radial-gradient(circle at 50% 2%, #1ABC9C 3px, transparent 3px),
        radial-gradient(circle at 2% 50%, #1ABC9C 4px, transparent 4px),
        radial-gradient(circle at 98% 50%, #1ABC9C 3px, transparent 3px),
        radial-gradient(circle at 50% 98%, #1ABC9C 5px, transparent 5px),
        radial-gradient(circle at 25% 82%, #1ABC9C 3px, transparent 3px),
        radial-gradient(circle at 75% 15%, #1ABC9C 4px, transparent 4px);
    opacity: 0.7;
    animation: twinkleStars 4s ease-in-out infinite alternate;
}

/* İkinci layer - Daha küçük benekler */
.main-content::after,
.featured-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        /* Mini sarı */
        radial-gradient(circle at 7% 12%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 93% 8%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 17% 38%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 83% 42%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 27% 62%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 73% 58%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 37% 88%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 63% 92%, #FFD700 2px, transparent 2px),
        /* Mini pembe */
        radial-gradient(circle at 12% 25%, #FF6B9D 2px, transparent 2px),
        radial-gradient(circle at 88% 22%, #FF6B9D 2px, transparent 2px),
        radial-gradient(circle at 22% 52%, #FF6B9D 2px, transparent 2px),
        radial-gradient(circle at 78% 55%, #FF6B9D 2px, transparent 2px),
        radial-gradient(circle at 32% 78%, #FF6B9D 2px, transparent 2px),
        radial-gradient(circle at 68% 82%, #FF6B9D 2px, transparent 2px),
        /* Mini mavi */
        radial-gradient(circle at 42% 15%, #4A90D9 2px, transparent 2px),
        radial-gradient(circle at 58% 18%, #4A90D9 2px, transparent 2px),
        radial-gradient(circle at 47% 45%, #4A90D9 2px, transparent 2px),
        radial-gradient(circle at 53% 48%, #4A90D9 2px, transparent 2px),
        radial-gradient(circle at 43% 75%, #4A90D9 2px, transparent 2px),
        radial-gradient(circle at 57% 72%, #4A90D9 2px, transparent 2px),
        /* Mini yeşil */
        radial-gradient(circle at 8% 65%, #2ECC71 2px, transparent 2px),
        radial-gradient(circle at 92% 62%, #2ECC71 2px, transparent 2px),
        radial-gradient(circle at 15% 85%, #2ECC71 2px, transparent 2px),
        radial-gradient(circle at 85% 88%, #2ECC71 2px, transparent 2px);
    opacity: 0.5;
    animation: twinkleStars2 3s ease-in-out infinite alternate-reverse;
}

@keyframes twinkleStars {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

@keyframes twinkleStars2 {
    0% { opacity: 0.4; }
    50% { opacity: 0.6; }
    100% { opacity: 0.5; }
}

/* Yıldız şekilleri - CSS ile - YOĞUN VERSİYON */
.star-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

.star-decoration::before {
    content: '★';
    position: absolute;
    animation: floatStar 6s ease-in-out infinite;
}

/* 12 adet yıldız */
.star-decoration.star-1 { top: 10%; left: 3%; color: #FFD700; font-size: 1.4rem; }
.star-decoration.star-2 { top: 25%; right: 5%; color: #FF6B9D; font-size: 1.1rem; animation-delay: 0.5s; }
.star-decoration.star-3 { top: 40%; left: 2%; color: #4A90D9; font-size: 1.3rem; animation-delay: 1s; }
.star-decoration.star-4 { top: 55%; right: 4%; color: #2ECC71; font-size: 1rem; animation-delay: 1.5s; }
.star-decoration.star-5 { top: 70%; left: 4%; color: #9B59B6; font-size: 1.2rem; animation-delay: 2s; }
.star-decoration.star-6 { top: 85%; right: 3%; color: #F39C12; font-size: 1.1rem; animation-delay: 2.5s; }
.star-decoration.star-7 { top: 15%; left: 8%; color: #1ABC9C; font-size: 0.9rem; animation-delay: 3s; }
.star-decoration.star-8 { top: 35%; right: 7%; color: #E74C3C; font-size: 1rem; animation-delay: 3.5s; }
.star-decoration.star-9 { top: 50%; left: 6%; color: #FFD700; font-size: 0.8rem; animation-delay: 4s; }
.star-decoration.star-10 { top: 65%; right: 6%; color: #FF6B9D; font-size: 1.2rem; animation-delay: 4.5s; }
.star-decoration.star-11 { top: 80%; left: 5%; color: #4A90D9; font-size: 1rem; animation-delay: 5s; }
.star-decoration.star-12 { top: 95%; right: 5%; color: #2ECC71; font-size: 0.9rem; animation-delay: 5.5s; }

@keyframes floatStar {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-12px) rotate(15deg) scale(1.15); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-5px) rotate(-10deg) scale(0.9); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-18px) rotate(8deg) scale(1.1); 
        opacity: 0.85;
    }
}

/* Sparkle efekti - YOĞUN VERSİYON */
.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

.sparkle::before {
    content: '✦';
    position: absolute;
    animation: sparkleAnim 3s ease-in-out infinite;
}

/* 12 adet sparkle */
.sparkle.sparkle-1 { top: 8%; left: 15%; color: #FFD700; font-size: 0.9rem; }
.sparkle.sparkle-2 { top: 18%; right: 12%; color: #FF6B9D; font-size: 0.7rem; animation-delay: 0.3s; }
.sparkle.sparkle-3 { top: 28%; left: 10%; color: #4A90D9; font-size: 0.8rem; animation-delay: 0.6s; }
.sparkle.sparkle-4 { top: 38%; right: 8%; color: #2ECC71; font-size: 0.6rem; animation-delay: 0.9s; }
.sparkle.sparkle-5 { top: 48%; left: 12%; color: #9B59B6; font-size: 0.7rem; animation-delay: 1.2s; }
.sparkle.sparkle-6 { top: 58%; right: 10%; color: #F39C12; font-size: 0.8rem; animation-delay: 1.5s; }
.sparkle.sparkle-7 { top: 68%; left: 8%; color: #1ABC9C; font-size: 0.6rem; animation-delay: 1.8s; }
.sparkle.sparkle-8 { top: 78%; right: 15%; color: #E74C3C; font-size: 0.7rem; animation-delay: 2.1s; }
.sparkle.sparkle-9 { top: 88%; left: 14%; color: #FFD700; font-size: 0.9rem; animation-delay: 2.4s; }
.sparkle.sparkle-10 { top: 12%; right: 18%; color: #FF6B9D; font-size: 0.6rem; animation-delay: 2.7s; }
.sparkle.sparkle-11 { top: 45%; left: 18%; color: #4A90D9; font-size: 0.8rem; animation-delay: 3s; }
.sparkle.sparkle-12 { top: 75%; right: 20%; color: #2ECC71; font-size: 0.7rem; animation-delay: 3.3s; }

@keyframes sparkleAnim {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.6) rotate(180deg); 
        opacity: 0.9;
    }
}

/* Daha fazla dekoratif şekiller */
.floating-decorations {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Dönen artı işaretleri - YOĞUN VERSİYON */
.plus-decoration {
    position: absolute;
    font-weight: 300;
    animation: rotatePlus 8s linear infinite;
}

.plus-decoration::before {
    content: '+';
}

/* 8 adet artı */
.plus-decoration.plus-1 { top: 8%; left: 12%; color: #FF6B9D; font-size: 1.6rem; opacity: 0.35; }
.plus-decoration.plus-2 { top: 22%; right: 15%; color: #4A90D9; font-size: 1.4rem; opacity: 0.3; animation-delay: 1s; }
.plus-decoration.plus-3 { top: 38%; left: 8%; color: #2ECC71; font-size: 1.2rem; opacity: 0.35; animation-delay: 2s; }
.plus-decoration.plus-4 { top: 52%; right: 10%; color: #9B59B6; font-size: 1.5rem; opacity: 0.3; animation-delay: 3s; }
.plus-decoration.plus-5 { top: 68%; left: 15%; color: #F39C12; font-size: 1.3rem; opacity: 0.35; animation-delay: 4s; }
.plus-decoration.plus-6 { top: 82%; right: 12%; color: #1ABC9C; font-size: 1.4rem; opacity: 0.3; animation-delay: 5s; }
.plus-decoration.plus-7 { top: 15%; right: 20%; color: #E74C3C; font-size: 1.1rem; opacity: 0.35; animation-delay: 6s; }
.plus-decoration.plus-8 { top: 90%; left: 18%; color: #FFD700; font-size: 1.2rem; opacity: 0.3; animation-delay: 7s; }

@keyframes rotatePlus {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Küçük daireler - YOĞUN VERSİYON */
.dot-decoration {
    position: absolute;
    border-radius: 50%;
    animation: pulseDot 3s ease-in-out infinite;
}

/* 12 adet nokta */
.dot-decoration.dot-1 { top: 5%; left: 20%; width: 8px; height: 8px; background: #FFD700; opacity: 0.45; }
.dot-decoration.dot-2 { top: 12%; right: 18%; width: 6px; height: 6px; background: #FF6B9D; opacity: 0.4; animation-delay: 0.3s; }
.dot-decoration.dot-3 { top: 22%; left: 5%; width: 10px; height: 10px; background: #4A90D9; opacity: 0.5; animation-delay: 0.6s; }
.dot-decoration.dot-4 { top: 32%; right: 8%; width: 7px; height: 7px; background: #2ECC71; opacity: 0.45; animation-delay: 0.9s; }
.dot-decoration.dot-5 { top: 42%; left: 18%; width: 5px; height: 5px; background: #9B59B6; opacity: 0.4; animation-delay: 1.2s; }
.dot-decoration.dot-6 { top: 52%; right: 22%; width: 9px; height: 9px; background: #F39C12; opacity: 0.5; animation-delay: 1.5s; }
.dot-decoration.dot-7 { top: 62%; left: 8%; width: 6px; height: 6px; background: #1ABC9C; opacity: 0.45; animation-delay: 1.8s; }
.dot-decoration.dot-8 { top: 72%; right: 12%; width: 8px; height: 8px; background: #E74C3C; opacity: 0.4; animation-delay: 2.1s; }
.dot-decoration.dot-9 { top: 82%; left: 22%; width: 7px; height: 7px; background: #FFD700; opacity: 0.5; animation-delay: 2.4s; }
.dot-decoration.dot-10 { top: 88%; right: 5%; width: 5px; height: 5px; background: #FF6B9D; opacity: 0.45; animation-delay: 2.7s; }
.dot-decoration.dot-11 { top: 95%; left: 10%; width: 9px; height: 9px; background: #4A90D9; opacity: 0.4; animation-delay: 3s; }
.dot-decoration.dot-12 { top: 3%; right: 25%; width: 6px; height: 6px; background: #2ECC71; opacity: 0.5; animation-delay: 3.3s; }

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.4); opacity: 0.55; }
}

/* Yıldız burst efekti - YOĞUN VERSİYON */
.burst-decoration {
    position: absolute;
    animation: burstAnim 5s ease-in-out infinite;
}

.burst-decoration::before {
    content: '✧';
}

/* 8 adet burst */
.burst-decoration.burst-1 { top: 10%; right: 6%; color: #FFD700; font-size: 1.1rem; opacity: 0.45; }
.burst-decoration.burst-2 { top: 25%; left: 6%; color: #FF6B9D; font-size: 0.9rem; opacity: 0.4; animation-delay: 0.7s; }
.burst-decoration.burst-3 { top: 40%; right: 12%; color: #4A90D9; font-size: 1rem; opacity: 0.45; animation-delay: 1.4s; }
.burst-decoration.burst-4 { top: 55%; left: 10%; color: #2ECC71; font-size: 0.8rem; opacity: 0.4; animation-delay: 2.1s; }
.burst-decoration.burst-5 { top: 70%; right: 8%; color: #9B59B6; font-size: 1.1rem; opacity: 0.45; animation-delay: 2.8s; }
.burst-decoration.burst-6 { top: 85%; left: 15%; color: #F39C12; font-size: 0.9rem; opacity: 0.4; animation-delay: 3.5s; }
.burst-decoration.burst-7 { top: 18%; left: 20%; color: #1ABC9C; font-size: 1rem; opacity: 0.45; animation-delay: 4.2s; }
.burst-decoration.burst-8 { top: 92%; right: 18%; color: #E74C3C; font-size: 0.8rem; opacity: 0.4; animation-delay: 4.9s; }

@keyframes burstAnim {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: scale(1.3) rotate(45deg); 
        opacity: 0.55;
    }
    50% { 
        transform: scale(0.85) rotate(90deg); 
        opacity: 0.35;
    }
    75% { 
        transform: scale(1.15) rotate(135deg); 
        opacity: 0.45;
    }
}

/* Mobilde küçült */
@media (max-width: 768px) {
    .star-decoration,
    .sparkle,
    .plus-decoration,
    .burst-decoration {
        display: none;
    }
    
    .dot-decoration {
        opacity: 0.25 !important;
    }
    
    .main-content::before,
    .featured-section::before {
        opacity: 0.25;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
    width: auto;
}
.logo-text img {
    vertical-align: middle;
}
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-yellow);
}

/* Logo Görsel */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Search Box */
.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-pink);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: var(--accent-pink);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-trigger .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--accent-pink), #FF8FB1);
    color: white !important;
    transform: none;
}

.nav-dropdown-menu a i {
    color: var(--accent-pink);
    width: 20px;
    text-align: center;
}

.nav-dropdown-menu a:hover i {
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.25);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Hamburger Menu Icon */
.menu-icon {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Logo ve Mobil Menü Wrapper */
.logo-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E88A8 100%);
    padding: 60px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='30' font-size='20' fill='rgba(255,255,255,0.08)'%3E📚%3C/text%3E%3Ctext x='60' y='70' font-size='15' fill='rgba(255,255,255,0.08)'%3E✏️%3C/text%3E%3Ctext x='30' y='80' font-size='18' fill='rgba(255,255,255,0.08)'%3E🎨%3C/text%3E%3C/svg%3E");
    background-size: 150px;
    opacity: 1;
    animation: floatIcons 20s ease-in-out infinite;
}

@keyframes floatIcons {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-yellow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Cloud Wave Effect */
.cloud-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 C150,100 350,0 500,50 C650,100 800,20 1000,60 C1200,100 1350,30 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* ============================================
   CATEGORY PAGE BANNER
   ============================================ */
.category-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E88A8 100%);
    padding: 40px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='30' font-size='20' fill='rgba(255,255,255,0.08)'%3E📖%3C/text%3E%3Ctext x='50' y='60' font-size='25' fill='rgba(255,255,255,0.08)'%3E✂️%3C/text%3E%3Ctext x='80' y='40' font-size='18' fill='rgba(255,255,255,0.08)'%3E🖍️%3C/text%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 1;
    animation: floatIcons 25s ease-in-out infinite reverse;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb span {
    color: var(--accent-yellow);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main-content {
    background: var(--bg-light);
    min-height: 60vh;
    padding: 40px 20px 60px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY CARDS GRID (Ana Sayfa)
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:not(:has(.category-card-image))::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

/* Görsel olan kartlarda farklı stil */
.category-card:has(.category-card-image) {
    padding: 0;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Hover'da kenar rengi parlaklığı */
.category-card.yellow:hover { border-color: #FFC107; box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25); }
.category-card.purple:hover { border-color: #9B59B6; box-shadow: 0 15px 40px rgba(155, 89, 182, 0.25); }
.category-card.pink:hover { border-color: #FF6B9D; box-shadow: 0 15px 40px rgba(255, 107, 157, 0.25); }
.category-card.green:hover { border-color: #2ECC71; box-shadow: 0 15px 40px rgba(46, 204, 113, 0.25); }
.category-card.orange:hover { border-color: #FF7F50; box-shadow: 0 15px 40px rgba(255, 127, 80, 0.25); }
.category-card.blue:hover { border-color: #3498DB; box-shadow: 0 15px 40px rgba(52, 152, 219, 0.25); }
.category-card.red:hover { border-color: #E74C3C; box-shadow: 0 15px 40px rgba(231, 76, 60, 0.25); }
.category-card.teal:hover { border-color: #00B894; box-shadow: 0 15px 40px rgba(0, 184, 148, 0.25); }

.category-card:nth-child(1)::before { background: linear-gradient(90deg, #FFD93D, #FF6B6B); }
.category-card:nth-child(2)::before { background: linear-gradient(90deg, #C9B1FF, #9B59B6); }
.category-card:nth-child(3)::before { background: linear-gradient(90deg, #FF9A9E, #FECFEF); }
.category-card:nth-child(4)::before { background: linear-gradient(90deg, #A8E6CF, #88D8B0); }
.category-card:nth-child(5)::before { background: linear-gradient(90deg, #FF6B9D, #C44569); }
.category-card:nth-child(6)::before { background: linear-gradient(90deg, #74B9FF, #0984E3); }
.category-card:nth-child(7)::before { background: linear-gradient(90deg, #FDCB6E, #E17055); }
.category-card:nth-child(8)::before { background: linear-gradient(90deg, #55EFC4, #00B894); }

.category-card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.category-card:hover .category-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Kategori Kartı Görsel */
.category-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-card-image img {
    transform: scale(1.05);
}

.category-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    line-height: 1.3;
}

/* Colored Category Cards - Arka Plan + İkon */
.category-card.yellow { 
    background: linear-gradient(135deg, #FFFEF0 0%, #FFF9E0 100%); 
    border: 2px solid #FFD93D;
}
.category-card.purple { 
    background: linear-gradient(135deg, #FCF8FF 0%, #F5EEFF 100%); 
    border: 2px solid #C9B1FF;
}
.category-card.pink { 
    background: linear-gradient(135deg, #FFF8FB 0%, #FFEFF5 100%); 
    border: 2px solid #FF9EC4;
}
.category-card.green { 
    background: linear-gradient(135deg, #F5FFF8 0%, #E8FFEF 100%); 
    border: 2px solid #7ED99A;
}
.category-card.orange { 
    background: linear-gradient(135deg, #FFFAF5 0%, #FFF3E8 100%); 
    border: 2px solid #FFB380;
}
.category-card.blue { 
    background: linear-gradient(135deg, #F5FBFF 0%, #E8F4FF 100%); 
    border: 2px solid #74B9FF;
}
.category-card.red { 
    background: linear-gradient(135deg, #FFF8F8 0%, #FFEFEF 100%); 
    border: 2px solid #FF7675;
}
.category-card.teal { 
    background: linear-gradient(135deg, #F0FFFD 0%, #E0FFF9 100%); 
    border: 2px solid #55EFC4;
}

/* İkon Renkleri */
.category-card.yellow .category-card-icon { background: linear-gradient(135deg, #FFE082, #FFD54F); }
.category-card.purple .category-card-icon { background: linear-gradient(135deg, #E1BEE7, #CE93D8); }
.category-card.pink .category-card-icon { background: linear-gradient(135deg, #F8BBD9, #F48FB1); }
.category-card.green .category-card-icon { background: linear-gradient(135deg, #C8E6C9, #A5D6A7); }
.category-card.orange .category-card-icon { background: linear-gradient(135deg, #FFCCBC, #FFAB91); }
.category-card.blue .category-card-icon { background: linear-gradient(135deg, #B3E5FC, #81D4FA); }
.category-card.red .category-card-icon { background: linear-gradient(135deg, #FFCDD2, #EF9A9A); }
.category-card.teal .category-card-icon { background: linear-gradient(135deg, #B2DFDB, #80CBC4); }

/* ============================================
   SUBCATEGORY LIST (Kategori Sayfası)
   ============================================ */
.subcategory-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 3px dashed var(--accent-pink);
}

.subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subcategory-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.subcategory-item:nth-child(odd) {
    background: linear-gradient(90deg, var(--accent-pink), #FF8FB1);
    color: white;
}

.subcategory-item:nth-child(even) {
    background: linear-gradient(90deg, var(--accent-blue), #5A9FE9);
    color: white;
}

.subcategory-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.subcategory-item i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.subcategory-item .item-text {
    flex: 1;
}

.subcategory-item .expand-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.subcategory-item .expand-btn i {
    margin: 0;
    font-size: 0.9rem;
}

.subcategory-item .expand-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.subcategory-item.expanded .expand-btn {
    background: rgba(255,255,255,0.5);
}

/* Nested Subcategories - Alt Kategoriler */
.subcategory-item-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.subcategory-item.has-children {
    cursor: pointer;
}

.subcategory-item.expanded {
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.nested-subcategories {
    display: none;
    padding: 15px;
    margin: 10px 0 10px 20px;
    background: linear-gradient(135deg, #f0f4f8, #e8eef5);
    border-radius: 12px;
    border-left: 4px solid var(--accent-pink);
}

/* Slide Down Animation - kullanılmıyor şimdilik */

.nested-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nested-item:nth-child(even) {
    border-left-color: var(--accent-pink);
}

.nested-item:last-child {
    margin-bottom: 0;
}

.nested-item:hover {
    background: linear-gradient(90deg, var(--accent-pink), #FF8FB1);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nested-item:nth-child(even):hover {
    background: linear-gradient(90deg, var(--accent-blue), #5A9FE9);
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.nested-item i {
    margin-right: 12px;
    font-size: 1rem;
    color: var(--accent-pink);
}

.nested-item:nth-child(even) i {
    color: var(--accent-blue);
}

.nested-item:hover i {
    color: white;
}

/* ============================================
   PDF ITEMS LIST
   ============================================ */
.pdf-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pdf-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pdf-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pdf-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.pdf-info {
    flex: 1;
}

.pdf-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pdf-meta {
    font-size: 0.85rem;
    color: #888;
}

.pdf-download {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pdf-download:hover {
    background: #27AE60;
    transform: scale(1.05);
}

/* ============================================
   CONTENT LIST (İçerik Listesi)
   ============================================ */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
    border-left: 4px solid var(--accent-pink);
}

.content-item:nth-child(even) {
    border-left-color: var(--accent-blue);
}

.content-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left-width: 6px;
}

.content-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 18px;
    flex-shrink: 0;
}

.content-item:nth-child(even) .content-item-icon {
    background: linear-gradient(135deg, var(--accent-blue), #5A9FE9);
}

.content-item-info {
    flex: 1;
}

.content-item-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.content-item-meta {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.content-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.content-item-arrow {
    color: #ccc;
    font-size: 1.2rem;
    transition: var(--transition);
}

.content-item:hover .content-item-arrow {
    color: var(--accent-pink);
    transform: translateX(5px);
}

/* ============================================
   KOMPAKT İÇERİK LİSTESİ
   ============================================ */
.compact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.content-item-compact:hover {
    background: #f8f9ff;
    border-color: var(--accent-pink);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.content-icon-small {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #FF6B8A 0%, #FF8FA3 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.content-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.content-title-compact {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    color: #2C3E50;
}

.content-item-compact > i:last-child {
    color: #ccc;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.content-item-compact:hover > i:last-child {
    color: var(--accent-pink);
    transform: translateX(3px);
}

/* ============================================
   CONTENT DETAIL PAGE (İçerik Detay)
   ============================================ */
.content-detail-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-detail-header {
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.content-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='80' cy='40' r='3' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='40' cy='80' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100px;
}

.content-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.content-detail-icon i {
    font-size: 3rem;
    color: white;
}

.content-detail-title {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.content-detail-body {
    padding: 40px 30px;
}

.content-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.content-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.content-info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Admin Avatar Icon */
.admin-avatar-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.content-info-item:nth-child(2) i { background: linear-gradient(135deg, var(--accent-blue), #5A9FE9); }
.content-info-item:nth-child(3) i { background: linear-gradient(135deg, var(--accent-green), #27AE60); }
.content-info-item:nth-child(4) i { background: linear-gradient(135deg, var(--accent-orange), #E67E22); }

.content-info-text {
    flex: 1;
}

.content-info-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2px;
}

.content-info-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Download Button */
.download-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-green), #27AE60);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

.download-btn i {
    font-size: 1.4rem;
}

/* Share Section */
.share-section {
    border-top: 2px dashed #eee;
    padding-top: 30px;
}

.share-title {
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.share-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.share-btn.facebook { background: linear-gradient(135deg, #1877F2, #0D5BBF); }
.share-btn.twitter { background: linear-gradient(135deg, #1DA1F2, #0C85D0); }
.share-btn.instagram { background: linear-gradient(135deg, #E4405F, #C13584, #833AB4); }
.share-btn.copy { background: linear-gradient(135deg, #6C757D, #495057); }

.share-btn.whatsapp:hover { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
.share-btn.facebook:hover { box-shadow: 0 5px 20px rgba(24, 119, 242, 0.5); }
.share-btn.twitter:hover { box-shadow: 0 5px 20px rgba(29, 161, 242, 0.5); }
.share-btn.instagram:hover { box-shadow: 0 5px 20px rgba(228, 64, 95, 0.5); }
.share-btn.copy:hover { box-shadow: 0 5px 20px rgba(108, 117, 125, 0.5); }

/* ============================================
   FOOTER YENİ TASARIM
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-logo-img {
    max-height: 45px;
    margin-bottom: 10px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo-text span {
    color: var(--accent-pink);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

/* ============================================
   ŞİRİN İSTATİSTİK KUTULARI - İNCE VE YATAY
   ============================================ */
.cute-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 700px;
    margin: 0 auto 25px;
}

.cute-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.cute-stat:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.cute-stat.green { border-left: 3px solid #2ECC71; }
.cute-stat.orange { border-left: 3px solid #F39C12; }
.cute-stat.purple { border-left: 3px solid #9B59B6; }
.cute-stat.blue { border-left: 3px solid #3498DB; }

.cute-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cute-stat.green .cute-stat-icon {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
}

.cute-stat.orange .cute-stat-icon {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
}

.cute-stat.purple .cute-stat-icon {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: white;
}

.cute-stat.blue .cute-stat-icon {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
}

/* Online Pulse */
.pulse-circle {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: relative;
    animation: pulseAnim 1.5s ease-in-out infinite;
}

.pulse-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 1.5s ease-out infinite;
}

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

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

.cute-stat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cute-stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.cute-stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Developer Credit - Sabit */
.developer-credit {
    background: rgba(0,0,0,0.3);
    padding: 12px;
    text-align: center;
}

.developer-credit a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.developer-credit a:hover {
    color: #00D9FF;
}

.developer-credit i {
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .cute-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 25px 15px 20px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .footer-brand {
        min-width: 100%;
    }
    
    .cute-stats {
        gap: 8px;
        max-width: 280px;
    }
    
    .cute-stat {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .cute-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    .cute-stat-num {
        font-size: 1rem;
    }
    
    .cute-stat-label {
        font-size: 0.6rem;
    }
    
    .pulse-circle {
        width: 8px;
        height: 8px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        max-width: 100%;
        order: 2;
    }
    
    .nav-menu {
        order: 3;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Header - Logo ve Menü Butonu Yan Yana */
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    /* Mobil menü butonu stilleri header.php'de tanımlandı */
    
    .search-box {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 12px;
    }
    
    /* Mobil menü stilleri header.php'de inline olarak tanımlandı */
    
    /* Mobil menü link stilleri header.php'de tanımlandı */
    
    /* Mobil Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .nav-dropdown-trigger .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(255,255,255,0.08);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .nav-dropdown.mobile-open .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-menu a {
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        justify-content: center;
        padding: 12px 16px;
    }
    
    .nav-dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown-menu a:hover {
        background: rgba(255,255,255,0.15);
    }
    
    .nav-dropdown-menu a i {
        color: rgba(255,255,255,0.7);
    }
    
    /* Logo Yazı Tipi Mobil */
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 18px 12px;
    }
    
    .category-card-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .category-card-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .category-card-image {
        padding: 0;
    }
    
    .subcategory-item {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .subcategory-item .expand-btn {
        width: 34px;
        height: 34px;
    }
    
    .nested-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    /* Son Eklenenler Mobil */
    .recent-item {
        padding: 14px 16px;
    }
    
    .recent-item-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 12px;
    }
    
    .recent-item-title {
        font-size: 0.95rem;
    }
    
    .recent-item-meta {
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    /* Background ikonları mobilde daha soluk */
    .hero-banner::before,
    .category-banner::before {
        opacity: 0.4 !important;
        background-size: 120px;
    }
    
    /* Son eklenenler mobil */
    .recent-item {
        min-height: auto;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    /* Yazı Tipi Düzeltmesi - Türkçe Karakterler */
    body {
        font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-card {
        padding: 15px 10px;
    }
    
    .category-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .category-card-title {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .subcategory-item {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .nested-item {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .pdf-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Slider Mobil */
    .slider-card {
        width: 220px;
    }
    
    .slider-title {
        font-size: 1.3rem;
    }
    
    /* Son Eklenenler Mobil */
    .recent-item-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    /* Sayfalandırma Mobil */
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.tooltip:hover::after {
    opacity: 1;
    bottom: calc(100% + 10px);
}

/* ============================================
   SLIDER - YAKLASAN ETKİNLİKLER
   ============================================ */
.section-divider {
    position: relative;
    padding: 40px 0 20px;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f8f9fa' d='M0,25 C200,50 400,0 600,25 C800,50 1000,10 1200,30 C1350,45 1400,20 1440,25 L1440,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
}

.section-title {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--accent-pink);
}

.section-title span {
    color: var(--accent-pink);
}

/* Slider Container */
.slider-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E88A8 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f8f9fa' d='M0,25 C200,0 400,50 600,25 C800,0 1000,40 1200,20 C1350,5 1400,30 1440,25 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.slider-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f8f9fa' d='M0,25 C200,50 400,0 600,25 C800,50 1000,10 1200,30 C1350,45 1400,20 1440,25 L1440,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
}

.slider-title {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.slider-title i {
    color: var(--accent-yellow);
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: slideLeft 30s linear infinite;
    width: max-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

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

.slider-card {
    flex-shrink: 0;
    width: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.slider-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.slider-card-header {
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.slider-card:nth-child(2) .slider-card-header { background: linear-gradient(135deg, var(--accent-blue), #5A9FE9); }
.slider-card:nth-child(3) .slider-card-header { background: linear-gradient(135deg, var(--accent-purple), #A66BBF); }
.slider-card:nth-child(4) .slider-card-header { background: linear-gradient(135deg, var(--accent-orange), #F5AB35); }
.slider-card:nth-child(5) .slider-card-header { background: linear-gradient(135deg, var(--accent-green), #3DDC84); }
.slider-card:nth-child(6) .slider-card-header { background: linear-gradient(135deg, #E74C3C, #C0392B); }

.slider-card-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2.5rem;
    overflow: hidden;
}

.slider-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slider-card-date {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-card-body {
    padding: 20px;
    text-align: center;
}

.slider-card-title {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.slider-card-category {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ============================================
   SON EKLENENLER BÖLÜMÜ
   ============================================ */
.recent-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.recent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-decoration: none;
    border-left: 5px solid var(--accent-pink);
    min-height: 80px;
}

.recent-item:nth-child(even) {
    border-left-color: var(--accent-blue);
}

.recent-item:nth-child(3n) {
    border-left-color: var(--accent-purple);
}

.recent-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-width: 6px;
}

.recent-item-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.recent-item:nth-child(even) .recent-item-number {
    background: linear-gradient(135deg, var(--accent-blue), #5A9FE9);
}

.recent-item:nth-child(3n) .recent-item-number {
    background: linear-gradient(135deg, var(--accent-purple), #A66BBF);
}

.recent-item-content {
    flex: 1;
    min-width: 0;
}

.recent-item-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.recent-item-meta {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.recent-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-item-arrow {
    color: #ccc;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-left: 15px;
    flex-shrink: 0;
}

.recent-item:hover .recent-item-arrow {
    color: var(--accent-pink);
    transform: translateX(5px);
}

/* Sayfalandırma */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: white;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pagination a:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
}

.pagination .active {
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    color: white;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination .dots {
    background: transparent;
    box-shadow: none;
    color: #888;
}

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.view-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.view-all-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-card {
        width: 250px;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
}





/* ============================================
   COOKIE CONSENT (Banner + Modal)
   ============================================ */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2000;
  display: none; /* JS açacak */
}

.cookie-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,107,157,0.25);
  padding: 18px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.cookie-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
  box-shadow: 0 8px 20px rgba(255,107,157,0.25);
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cookie-text h3 {
  margin: 0 0 4px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.cookie-text p {
  margin: 0;
  color: #556;
  font-size: 0.92rem;
  line-height: 1.35;
}

.cookie-link {
  color: var(--accent-blue);
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}
.cookie-link:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.92rem;
}

.cookie-btn.primary {
  background: linear-gradient(135deg, var(--accent-green), #27AE60);
  color: white;
}
.cookie-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(46,204,113,0.35); }

.cookie-btn.secondary {
  background: #eef1f5;
  color: var(--text-dark);
}
.cookie-btn.secondary:hover { transform: translateY(-2px); }

.cookie-btn.tertiary {
  background: linear-gradient(135deg, var(--accent-blue), #5A9FE9);
  color: white;
}
.cookie-btn.tertiary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(74,144,217,0.28); }

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
}

.cookie-modal[aria-hidden="false"] { display: block; }

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.cookie-modal-card {
  position: relative;
  width: min(560px, calc(100% - 40px));
  margin: 10vh auto 0;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 2px solid rgba(255,107,157,0.18);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px;
  background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
  color: white;
}

.cookie-modal-header h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.cookie-x {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.22);
  color: white;
  font-size: 1.05rem;
  transition: var(--transition);
}
.cookie-x:hover { background: rgba(255,255,255,0.35); transform: scale(1.03); }

.cookie-modal-body {
  padding: 18px 18px 8px;
}

.cookie-muted {
  margin: 0 0 14px 0;
  color: #667;
  font-size: 0.92rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #f8f9fa;
  margin-bottom: 10px;
}

.cookie-option-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.98rem;
}
.cookie-option-text span {
  display: block;
  color: #778;
  font-size: 0.86rem;
  margin-top: 2px;
}

/* Switch */
.cookie-switch { position: relative; width: 52px; height: 30px; flex-shrink: 0; }
.cookie-switch input { display: none; }
.cookie-slider {
  position: absolute; inset: 0;
  background: #d7dde6;
  border-radius: 999px;
  transition: var(--transition);
}
.cookie-slider::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  left: 4px; top: 4px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, var(--accent-green), #27AE60);
}
.cookie-switch input:checked + .cookie-slider::after {
  transform: translateX(22px);
}

/* Modal actions */
.cookie-modal-actions {
  padding: 14px 18px 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Floating manage button (opsiyonel) */
.cookie-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1900;
  display: none; /* onay sonrası göster */
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  font-size: 1.2rem;
  transition: var(--transition);
}
.cookie-fab:hover { transform: translateY(-3px); }

/* Responsive */
@media (max-width: 768px) {
  .cookie-card {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: center;
  }
}






/* ============================================
   STATIK SAYFA TASARIMI (Hakkımızda / İletişim / Politikalar)
   ============================================ */

.page-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-card-header {
  padding: 26px 22px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
  position: relative;
}

.page-card-header.blue { background: linear-gradient(135deg, var(--accent-blue), #5A9FE9); }
.page-card-header.teal { background: linear-gradient(135deg, #00B894, #55EFC4); }

.page-card-header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

.page-card-body {
  padding: 26px 22px;
  color: var(--text-dark);
}

.page-card-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin: 22px 0 10px;
}

.page-card-body p, .page-card-body li {
  color: #556;
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-card-body ul {
  list-style: disc;
  padding-left: 22px;
}

.page-muted {
  font-size: 0.9rem;
  color: #778;
  margin-top: 10px;
}

/* İletişim sayfası özel – dashed çerçeve + tatlı görünüm */
.contact-wrap {
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, #fff, #fafbff);
  box-shadow: var(--shadow);
  border: 3px dashed rgba(255, 107, 157, 0.55);
  position: relative;
}

.contact-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 2px dashed rgba(74, 144, 217, 0.35);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: white;
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border-left: 5px solid var(--accent-pink);
  transition: var(--transition);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-card:nth-child(2) { border-left-color: var(--accent-blue); }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-pink), #FF8FB1);
}

.contact-card:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, var(--accent-blue), #5A9FE9);
}

.contact-title {
  margin: 0 0 4px 0;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-value a {
  color: var(--accent-blue);
  font-weight: 800;
  text-decoration: none;
}
.contact-value a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .page-card-header h1 { font-size: 1.5rem; }
}









/* ============================================
   ODEVMAT TANITIM KARTI
   ============================================ */
.odevmat-promo-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.odevmat-card {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 30px 35px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.odevmat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(102, 126, 234, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Parlak ışık efekti */
.odevmat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: glowRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badge */
.odevmat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B9D, #FF8FB1);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    z-index: 2;
}

.odevmat-badge i {
    color: white;
    font-size: 0.9rem;
    animation: robotPulse 2s ease-in-out infinite;
}

@keyframes robotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.odevmat-badge span {
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content */
.odevmat-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.odevmat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.odevmat-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.odevmat-text {
    flex: 1;
}

.odevmat-text h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.odevmat-text h2 span {
    display: block;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.odevmat-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.odevmat-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.odevmat-arrow i {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.odevmat-card:hover .odevmat-arrow {
    background: white;
}

.odevmat-card:hover .odevmat-arrow i {
    color: #764ba2;
    transform: translateX(5px);
}

/* Features */
.odevmat-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.odevmat-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.odevmat-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.odevmat-feature i {
    color: #FFD700;
    font-size: 1rem;
}

.odevmat-feature span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Stars */
.odevmat-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.odevmat-stars .star {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: starFloat 4s ease-in-out infinite;
}

.odevmat-stars .star-1 { top: 15%; left: 5%; animation-delay: 0s; }
.odevmat-stars .star-2 { top: 60%; left: 3%; animation-delay: 1s; }
.odevmat-stars .star-3 { bottom: 20%; right: 8%; animation-delay: 2s; }
.odevmat-stars .star-4 { top: 40%; right: 5%; animation-delay: 3s; }

@keyframes starFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(20deg); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .odevmat-card {
        padding: 25px 20px;
    }
    
    .odevmat-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .odevmat-icon {
        width: 70px;
        height: 70px;
    }
    
    .odevmat-icon i {
        font-size: 2rem;
    }
    
    .odevmat-text h2 {
        font-size: 1.5rem;
    }
    
    .odevmat-text p {
        font-size: 0.9rem;
    }
    
    .odevmat-arrow {
        display: none;
    }
    
    .odevmat-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }
    
    .odevmat-badge span {
        font-size: 0.75rem;
    }
    
    .odevmat-features {
        justify-content: center;
    }
    
    .odevmat-feature {
        padding: 8px 14px;
    }
    
    .odevmat-feature span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .odevmat-text h2 {
        font-size: 1.3rem;
    }
    
    .odevmat-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   VIDEO BÖLÜMÜ STİLLERİ
   ============================================ */

.video-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 3px dashed var(--accent-purple);
    margin-bottom: 30px;
}

.video-section-title {
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-section-title i {
    color: #E74C3C;
}

.video-count {
    font-size: 0.85rem;
    color: #888;
    font-weight: normal;
}

/* Video Grid - Flexbox ile Akıllı Layout */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Video Kartı - Temel */
.video-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 280px;
}

/* 1 video - biraz daha geniş ama çok büyük değil */
.video-grid.video-count-1 .video-card {
    flex: 0 1 500px;
    max-width: 500px;
}

/* 2 video - yan yana %50 */
.video-grid.video-count-2 .video-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* 3 video - 3'ü yan yana %33 */
.video-grid.video-count-3 .video-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 200px;
}

/* 4 video - 2+2 düzeni */
.video-grid.video-count-4 .video-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* 5 video - İlk 3 + son 2 (tek kalmasın) */
.video-grid.video-count-5 .video-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 200px;
}
.video-grid.video-count-5 .video-card:nth-child(4),
.video-grid.video-count-5 .video-card:nth-child(5) {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* 6 video - 3+3 veya 2+2+2 */
.video-grid.video-count-6 .video-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 200px;
}

/* 7+ video - İlk 3, sonra 2'şerli */
.video-grid.video-count-7 .video-card,
.video-grid.video-count-8 .video-card,
.video-grid.video-count-9 .video-card,
.video-grid.video-count-10 .video-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Video Embed Container - 16:9 oran - BÜYÜTÜLMÜŞ */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #2C3E50, #34495E);
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Thumbnail + Play Button - Mobil için optimize */
.video-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    -webkit-tap-highlight-color: transparent; /* Mobilde mavi highlight kaldır */
    touch-action: manipulation; /* Çift tıklama zoom'u engelle */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Thumbnail'a tıklamayı engelle, wrapper'a gitsin */
}

.video-play-btn {
    position: relative;
    z-index: 20;
    background: none;
    border: none;
    padding: 15px; /* Daha büyük tıklanabilir alan */
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: none; /* Butona değil wrapper'a tıklansın */
}

.video-thumbnail-wrapper:hover .video-play-btn {
    transform: scale(1.1);
    opacity: 1;
}

.video-thumbnail-wrapper:active .video-play-btn {
    transform: scale(0.95);
}

.video-play-btn svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    pointer-events: none;
}

/* Mobilde play butonunu büyüt - kolay tıklama için */
@media (max-width: 768px) {
    .video-play-btn svg {
        width: 72px;
        height: 52px;
    }
    
    /* Mobilde video kartlarını tek sütun ve daha büyük yap */
    .video-grid .video-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    /* Mobilde video embed alanını dikey olarak büyüt */
    .video-embed {
        padding-bottom: 65% !important; /* Daha uzun video alanı */
    }
}

@media (max-width: 480px) {
    .video-play-btn svg {
        width: 80px;
        height: 58px;
    }
    
    /* Küçük ekranlarda daha da büyük video alanı */
    .video-embed {
        padding-bottom: 70% !important;
    }
    
    /* Play butonu etrafında büyük tıklanabilir alan */
    .video-play-btn {
        padding: 20px;
    }
}

/* Thumbnail hover efekti */
.video-thumbnail-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transition: background 0.2s ease;
    pointer-events: none;
}

.video-thumbnail-wrapper:hover::after {
    background: rgba(0,0,0,0.2);
}

/* Video Bilgi */
.video-info {
    padding: 15px 18px;
    background: white;
}

.video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 3'lü satırlarda biraz küçük font */
.video-grid.video-count-3 .video-title,
.video-grid.video-count-5 .video-card:nth-child(-n+3) .video-title,
.video-grid.video-count-6 .video-title {
    font-size: 0.92rem;
}

/* Responsive Video Grid */
@media (max-width: 992px) {
    .video-grid.video-count-3 .video-card,
    .video-grid.video-count-5 .video-card,
    .video-grid.video-count-6 .video-card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 20px 15px;
    }
    
    .video-section-title {
        font-size: 1.1rem;
    }
    
    .video-grid {
        gap: 15px;
    }
    
    /* Mobilde yan yana 2 video */
    .video-card {
        flex: 1 1 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        min-width: 140px !important;
    }
    
    .video-info {
        padding: 10px 12px;
    }
    
    .video-title {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 15px 12px;
        border-radius: 15px;
    }
    
    .video-grid {
        gap: 10px;
    }
    
    .video-card {
        border-radius: 12px;
        min-width: 120px !important;
    }
    
    .video-info {
        padding: 8px 10px;
    }
    
    .video-title {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 1;
    }
}

/* Footer Linkleri - şık pill butonlar */
.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin: 18px 0 10px;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.18);
}

.footer-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  font-weight:700;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

.footer-link i{
  color: var(--accent-yellow);
  opacity: 0.95;
}

.footer-link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.footer-link:hover i{
  color: var(--accent-pink);
}

/* Mobilde daha kompakt */
@media (max-width: 600px){
  .footer-links{ padding: 12px 10px; }
  .footer-link{ font-size: 0.85rem; padding: 9px 12px; }
}

/* ============================================
   HERO HABER SLİDER STİLLERİ
   ============================================ */

.hero-news-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-news-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-news-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-news-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.hero-news-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-news-title h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.hero-news-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.hero-news-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.hero-news-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    gap: 15px;
}

.hero-news-slider {
    overflow: hidden;
    cursor: grab;
    padding: 10px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hero-news-slider:active {
    cursor: grabbing;
}

.hero-news-track {
    display: flex;
    gap: 20px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-news-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-news-card-image {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.hero-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-news-card:hover .hero-news-card-image img {
    transform: scale(1.1);
}

.hero-news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.hero-news-card-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-news-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-news-card-content {
    padding: 20px;
}

.hero-news-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.5;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.hero-news-card:hover .hero-news-card-content h3 {
    color: #E74C3C;
}

.hero-news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-news-card-meta > span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-news-card-meta i {
    color: #E74C3C;
}

.hero-news-card-link {
    color: #E74C3C;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.hero-news-card:hover .hero-news-card-link {
    gap: 10px;
}

.hero-news-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.hero-news-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-news-btn:hover {
    background: #E74C3C;
    border-color: #E74C3C;
    transform: scale(1.1);
}

.hero-news-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-news-hint i {
    animation: swipe-hint 1.5s ease-in-out infinite;
}

/* Tüm Haberleri Gör Footer */
.hero-news-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero-news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.hero-news-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
    gap: 18px;
}

.hero-news-view-all i:last-child {
    transition: transform 0.3s ease;
}

.hero-news-view-all:hover i:last-child {
    transform: translateX(5px);
}

@keyframes swipe-hint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-news-section {
        padding: 40px 15px;
    }
    
    .hero-news-title h2 {
        font-size: 1.4rem;
    }
    
    .hero-news-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-news-card {
        flex: 0 0 260px;
    }
    
    .hero-news-card-image {
        height: 140px;
    }
    
    .hero-news-all-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-news-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-news-title {
        flex-direction: column;
    }
    
    .hero-news-card {
        flex: 0 0 240px;
    }
    
    .hero-news-btn {
        width: 40px;
        height: 40px;
    }
}
