* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F4A683;
    --primary-dark: #e8956f;
    --secondary: #4ECDC4;
    --white: #FFFFFF;
    --dark: #2C3E50;
    --gray: #95A5A6;
    --light-gray: #f8f9fa;
    --footer-bg: #3D2C6B;
    --footer-dark: #2D1F4E;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 12px 35px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-lg: 30px;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: 'Patrick Hand', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 19px;
    line-height: 1.6;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    color: var(--dark);
    overflow-x: hidden;
}

/* Üst sabit Esra Öğretmen şeridi */
.teacher-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 20%, #fbc2eb 40%, #a18cd1 60%, #fbc2eb 80%, #ff9a9e 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-decoration: none;
}

.teacher-ribbon-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
}

.teacher-ribbon .ribbon-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.teacher-ribbon .ribbon-title span {
    margin-left: 3px;
}

.teacher-ribbon .ribbon-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
}

.teacher-ribbon .ribbon-cta i {
    font-size: 14px;
}

.teacher-ribbon .ribbon-cta .ribbon-hand {
    margin-left: 6px;
    font-size: 16px;
    animation: ribbonHand 1.1s infinite ease-in-out;
}

@keyframes ribbonHand {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Şerit yer açsın diye body'ye üst boşluk */
body {
    padding-top: 42px;
}

@media (max-width: 576px) {
    .teacher-ribbon-inner {
        gap: 8px;
        padding: 5px 10px;
        font-size: 11px;
    }
    .teacher-ribbon .ribbon-title {
        font-size: 14px;
    }
    .teacher-ribbon .ribbon-cta {
        padding: 4px 10px;
        font-size: 10px;
        gap: 4px;
    }
    .teacher-ribbon .ribbon-cta i {
        font-size: 12px;
    }
    .teacher-ribbon .ribbon-cta .ribbon-hand {
        font-size: 12px;
        margin-left: 4px;
    }
    body {
        padding-top: 34px;
    }
}

/* turkce karakter destegi */
@font-face {
    font-family: 'Nunito';
    font-display: swap;
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 32px;
    opacity: 0.08;
    animation: floatAround 25s infinite ease-in-out;
}

.float-item:nth-child(1) { top: 10%; left: 5%; font-size: 38px; }
.float-item:nth-child(2) { top: 20%; left: 25%; animation-delay: -3s; font-size: 30px; }
.float-item:nth-child(3) { top: 8%; left: 50%; animation-delay: -6s; font-size: 42px; }
.float-item:nth-child(4) { top: 25%; left: 75%; animation-delay: -9s; font-size: 28px; }
.float-item:nth-child(5) { top: 50%; left: 8%; animation-delay: -12s; font-size: 36px; }
.float-item:nth-child(6) { top: 60%; left: 85%; animation-delay: -15s; font-size: 32px; }
.float-item:nth-child(7) { top: 75%; left: 20%; animation-delay: -18s; font-size: 40px; }
.float-item:nth-child(8) { top: 85%; left: 60%; animation-delay: -21s; font-size: 26px; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-3deg); }
    75% { transform: translate(20px, 10px) rotate(4deg); }
}

/* parlayan yildizlar ve parcaciklar */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    border-radius: 50%;
    animation: sparkleFloat 8s infinite ease-in-out;
}

.sparkle-star {
    font-size: 16px;
    animation: sparkleStar 3s infinite ease-in-out;
}

.sparkle-dot {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,200,100,0.6) 50%, transparent 70%);
    box-shadow: 0 0 10px 2px rgba(255,200,100,0.4);
    animation: sparkleDot 4s infinite ease-in-out;
}

.sparkle-circle {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255,180,100,0.3);
    background: transparent;
    animation: sparkleCircle 5s infinite ease-in-out;
}

@keyframes sparkleStar {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(0.8) rotate(0deg);
        filter: drop-shadow(0 0 3px currentColor);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg);
        filter: drop-shadow(0 0 8px currentColor);
    }
}

@keyframes sparkleDot {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.5);
    }
}

@keyframes sparkleCircle {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(0.8) rotate(0deg);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.3) rotate(180deg);
    }
}

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

.sparkle:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 15%; left: 35%; animation-delay: -1s; }
.sparkle:nth-child(3) { top: 5%; left: 55%; animation-delay: -2s; }
.sparkle:nth-child(4) { top: 20%; left: 78%; animation-delay: -0.5s; }
.sparkle:nth-child(5) { top: 35%; left: 8%; animation-delay: -1.5s; }
.sparkle:nth-child(6) { top: 45%; left: 92%; animation-delay: -2.5s; }
.sparkle:nth-child(7) { top: 55%; left: 18%; animation-delay: -3s; }
.sparkle:nth-child(8) { top: 65%; left: 45%; animation-delay: -0.8s; }
.sparkle:nth-child(9) { top: 75%; left: 72%; animation-delay: -1.8s; }
.sparkle:nth-child(10) { top: 85%; left: 28%; animation-delay: -2.2s; }
.sparkle:nth-child(11) { top: 12%; left: 88%; animation-delay: -3.5s; }
.sparkle:nth-child(12) { top: 28%; left: 5%; animation-delay: -4s; }
.sparkle:nth-child(13) { top: 40%; left: 62%; animation-delay: -1.2s; }
.sparkle:nth-child(14) { top: 58%; left: 85%; animation-delay: -2.8s; }
.sparkle:nth-child(15) { top: 70%; left: 15%; animation-delay: -3.2s; }
.sparkle:nth-child(16) { top: 82%; left: 68%; animation-delay: -0.3s; }
.sparkle:nth-child(17) { top: 92%; left: 42%; animation-delay: -1.7s; }
.sparkle:nth-child(18) { top: 25%; left: 52%; animation-delay: -2.3s; }

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
}

.logo {
    flex: 0 0 auto;
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.header-social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.header-social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.header-social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
    .header-social {
        margin-left: 0;
        order: 2;
    }
    .header-social-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header-social {
        gap: 6px;
    }
    .header-social-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(244,166,131,0.4);
}

.logo-abc, .logo-123 {
    font-family: 'Fredoka One', cursive;
    color: white;
    line-height: 1;
}

.logo-abc { font-size: 12px; }
.logo-123 { font-size: 10px; opacity: 0.9; }

.logo-text {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

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

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
}

.nav-link:hover { background: var(--light-gray); color: var(--primary); }
.nav-link.active { background: var(--primary); color: white; }

.nav-dropdown { 
    position: relative;
}
.dropdown-toggle { cursor: pointer; }
.dropdown-icon { font-size: 10px; margin-left: 3px; transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-icon { transform: rotate(180deg); }

.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);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover { background: var(--light-gray); color: var(--primary); }
.dropdown-item i { color: var(--primary); width: 20px; text-align: center; }

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto;
}

.search-wrapper {
    width: 160px;
    position: relative;
}

.search-form {
    display: flex;
    background: var(--light-gray);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--primary);
    background: #fff;
}

.search-input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: inherit;
    color: var(--dark);
    width: 100%;
}

.search-input::placeholder { color: #aaa; }
.search-input:focus { outline: none; }

.search-btn {
    padding: 10px 16px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover { background: var(--primary-dark); }

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    margin-top: 8px;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

.search-results-dropdown.active { display: block; }

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    font-size: 13px;
}

.search-result-item:hover { background: var(--light-gray); }
.search-result-item i { color: var(--primary); margin-right: 10px; }
.search-result-item .result-title { font-weight: 700; flex: 1; }
.search-result-item .result-category {
    font-size: 10px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 8px;
}

/* ========== HERO KARTLARI SECTİON ========== */
.hero-cards-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #a855f7 100%);
    padding: 40px 0 100px;
    overflow: hidden;
}

.hero-cards-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-main-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-main-title .title-icon {
    font-size: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* Büyük Kategori Kartları */
.hero-big-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.hero-big-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 0;
    min-height: 280px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transform: rotate(var(--card-tilt, 0deg));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255,255,255,0.3);
}

.hero-big-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    z-index: 10;
}

.hero-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.hero-card-top {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: auto;
}

.hero-card-site {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card-class {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.hero-card-icon {
    font-size: 56px;
    margin: 15px 0;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-card-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.hero-card-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.hero-badge {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.hero-badge i {
    color: var(--card-bg);
    font-size: 11px;
}

/* Alt dalga/bulut */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
}

/* Responsive Hero Cards */
@media (max-width: 992px) {
    .hero-big-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-big-card {
        min-height: 250px;
        transform: rotate(0deg);
    }
    
    .hero-main-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hero-cards-section {
        padding: 30px 0 80px;
    }
    
    .hero-main-title {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .hero-big-card {
        min-height: 220px;
    }
    
    .hero-card-icon {
        font-size: 44px;
    }
    
    .hero-card-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .hero-big-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero-big-card {
        min-height: 200px;
        border-radius: 18px;
    }
    
    .hero-card-content {
        padding: 15px 10px;
    }
    
    .hero-card-site {
        font-size: 9px;
    }
    
    .hero-card-icon {
        font-size: 36px;
        margin: 10px 0;
    }
    
    .hero-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-badge {
        padding: 4px 10px;
        font-size: 10px;
    }
}

/* ========== HERO SIMPLE ========== */
.hero-simple {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 35px 0 60px;
    overflow: hidden;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-simple-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-emoji {
    font-size: 38px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-simple-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.hero-right {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.hero-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border-radius: 18px;
    text-decoration: none;
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform: rotate(-3deg);
    border: 3px solid rgba(255,255,255,0.3);
}

.hero-mini-card:nth-child(2) {
    transform: rotate(3deg);
}

.hero-mini-card:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-card-pink {
    background: linear-gradient(135deg, #FF9EB5 0%, #FF6B9D 100%);
}

.hero-card-teal {
    background: linear-gradient(135deg, #4DD4D4 0%, #20B2AA 100%);
}

.mini-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.mini-card-text {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-simple-title {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-simple-desc {
        margin: 0 auto;
    }
    
    .hero-right {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 25px 0 50px;
    }
    
    .hero-simple-title {
        font-size: 28px;
    }
    
    .hero-emoji {
        font-size: 26px;
    }
    
    .hero-simple-desc {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .hero-mini-card {
        padding: 14px 16px;
        min-width: 110px;
    }
    
    .mini-card-icon {
        font-size: 26px;
    }
    
    .mini-card-text {
        font-size: 14px;
    }
}

.section-title-center {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.title-icon { font-size: 45px; display: block; margin-bottom: 12px; }

.section-title-center h2 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 19px;
    margin-top: 15px;
}

.activities-section {
    padding: 40px 0 60px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

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

/* ====================== */
/* YUVARLAK ACTIVITY CARDS */
/* ====================== */
.activity-card {
    background: var(--card-bg, #fff);
    padding: 20px 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.activity-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 19px;
    font-weight: 700;
    color: var(--card-text);
    margin: 10px 0 8px 0;
    line-height: 1.3;
    order: 2;
}

.activity-image-wrap {
    order: 1;
}

.activity-desc {
    display: none;
}

.activity-btn {
    order: 3;
}

.activity-image-wrap {
    width: 90%;
    height: 140px;
    margin-bottom: 10px;
    border-radius: 16px;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.activity-image-wrap img,
.activity-image-wrap .activity-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 0;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
}

/* Saga sola carpma efekti */
.activity-card:hover .activity-image-wrap img,
.activity-card:hover .activity-img,
.activity-card:hover .activity-icon-box {
    animation: imageBounce 0.6s ease;
}

@keyframes imageBounce {
    0% { transform: translateX(0); }
    20% { transform: translateX(12px); }
    40% { transform: translateX(-10px); }
    60% { transform: translateX(6px); }
    80% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.activity-icon-box {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--card-accent);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

.activity-desc {
    font-size: 14px;
    color: var(--card-text);
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 0 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-meta {
    font-size: 13px;
    font-weight: 800;
    color: var(--card-text);
    margin-bottom: 12px;
}

.activity-btn { margin-top: auto; padding-top: 5px; }

.btn-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: auto;
}

.btn-circle i {
    transition: transform 0.3s ease;
}

.activity-card:hover .btn-circle {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.activity-card:hover .btn-circle i {
    animation: arrowSlide 0.5s ease forwards;
}

@keyframes arrowSlide {
    0% { transform: translateX(0); opacity: 1; }
    40% { transform: translateX(30px); opacity: 0; }
    41% { transform: translateX(-30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.selected-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.title-sub {
    display: block;
    font-family: 'Patrick Hand', 'Baloo 2', 'Nunito', cursive;
    font-size: 14px;
    font-weight: 700;
    color: #3D2C6B;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--gray);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.selected-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.selected-left,
.selected-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    max-width: 320px;
}

.selected-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.selected-item:hover {
    transform: translateY(-5px);
}

.left-item {
    text-align: right;
    flex-direction: row;
}

.right-item {
    text-align: left;
    flex-direction: row;
}

.selected-text h3 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.selected-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.selected-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--icon-bg);
    border: 3px solid var(--icon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.selected-icon i {
    font-size: 28px;
    color: white;
}

.selected-item:hover .selected-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.selected-center {
    flex-shrink: 0;
    position: relative;
}

.selected-center img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.featured-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.featured-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 28px 22px 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.featured-image-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px dashed rgba(255,255,255,0.5);
    padding: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.3);
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image-inner {
    transform: rotate(360deg);
}

.featured-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.featured-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.35;
}

.featured-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}

.page-header-wave {
    position: relative;
    padding: 30px 0 60px;
    background: linear-gradient(135deg, #B19CD9 0%, #9B7FC9 100%);
    overflow: hidden;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), 0 2px 5px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.breadcrumb-nav a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    padding: 4px 10px;
    border-radius: 15px;
    background: transparent;
}

.breadcrumb-nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.breadcrumb-nav a i {
    color: #667eea;
}

.breadcrumb-nav .bc-sep {
    color: #ccc;
    font-size: 10px;
}

.breadcrumb-nav .bc-current {
    color: #333;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea20, #764ba220);
    padding: 4px 12px;
    border-radius: 15px;
}

@media (max-width: 576px) {
    .breadcrumb-nav {
        font-size: 12px;
        gap: 4px;
        padding: 10px 15px;
    }
    .breadcrumb-nav a, .breadcrumb-nav .bc-current {
        padding: 3px 8px;
    }
}

.page-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pg-cloud {
    position: absolute;
    background: rgba(255,255,255,0.25);
    border-radius: 100px;
}

.pg-cloud::before, .pg-cloud::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}

.pg-cloud-1 { width: 160px; height: 45px; top: 20%; left: 5%; }
.pg-cloud-1::before { width: 60px; height: 60px; top: -30px; left: 25px; }
.pg-cloud-1::after { width: 48px; height: 48px; top: -24px; left: 68px; }

.pg-cloud-2 { width: 140px; height: 40px; top: 30%; right: 10%; }
.pg-cloud-2::before { width: 55px; height: 55px; top: -27px; left: 20px; }
.pg-cloud-2::after { width: 42px; height: 42px; top: -21px; left: 60px; }

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255,255,255,0.25);
    padding: 4px 12px;
    border-radius: 12px;
    transition: all 0.2s;
}

.breadcrumb a:hover { color: white; background: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: white; font-size: 9px; opacity: 0.6; }
.breadcrumb .current {
    color: white;
    font-weight: 700;
    background: rgba(255,255,255,0.35);
    padding: 4px 12px;
    border-radius: 12px;
}

.page-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 36px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-title i { color: white; }

/* Page Header Mini Cards */
.page-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.page-header-left {
    flex: 1;
}

.page-header-cards {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.page-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    min-width: 90px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.page-mini-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-mini-card:first-child {
    transform: rotate(-2deg);
}

.page-mini-card:last-child {
    transform: rotate(2deg);
}

.page-mini-card:first-child:hover,
.page-mini-card:last-child:hover {
    transform: rotate(0deg) translateY(-3px) scale(1.05);
}

.page-card-orange {
    background: linear-gradient(135deg, #FF9F43 0%, #FF7730 100%);
}

.page-card-pink {
    background: linear-gradient(135deg, #FF9EB5 0%, #FF6B9D 100%);
}

.page-mini-card .mini-card-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.page-mini-card .mini-card-text {
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-header-cards {
        margin-top: 15px;
        align-self: center;
    }
    
    .page-mini-card {
        padding: 10px 14px;
        min-width: 80px;
    }
    
    .page-mini-card .mini-card-icon {
        font-size: 20px;
    }
    
    .page-mini-card .mini-card-text {
        font-size: 11px;
    }
}

.main-content {
    background: white;
    min-height: 50vh;
    padding: 40px 0 60px;
}

.category-description-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #FFF8E8 0%, #FFF3E0 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
    border: 2px solid #FFE0B2;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.1);
}

.desc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.desc-icon i {
    font-size: 26px;
    color: white;
}

.desc-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #5D4037;
}

/* Kategori açıklama mobil responsive */
@media (max-width: 768px) {
    .category-description-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 18px 14px;
        margin-bottom: 20px;
    }
    
    .desc-icon {
        width: 45px;
        height: 45px;
    }
    
    .desc-icon i {
        font-size: 20px;
    }
    
    .desc-content {
        font-size: 12px;
        line-height: 1.5;
        max-height: 180px;
        overflow-y: auto;
    }
    
    .desc-content::-webkit-scrollbar {
        width: 3px;
    }
    
    .desc-content::-webkit-scrollbar-track {
        background: #FFE0B2;
        border-radius: 3px;
    }
    
    .desc-content::-webkit-scrollbar-thumb {
        background: #FF9800;
        border-radius: 3px;
    }
}

@media (max-width: 480px) {
    .category-description-box {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .desc-content {
        font-size: 11px;
        line-height: 1.4;
        max-height: 140px;
    }
    
    .desc-icon {
        width: 40px;
        height: 40px;
    }
    
    .desc-icon i {
        font-size: 17px;
    }
}

.custom-html-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.custom-html-content a {
    color: var(--primary);
    font-weight: 700;
}

.custom-html-content .btn,
.custom-html-content button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 5px;
}

.custom-html-content .btn:hover,
.custom-html-content button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.videos-section {
    margin-bottom: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.videos-grid.video-count-1 { grid-template-columns: 1fr; max-width: 600px; }
.videos-grid.video-count-2 { grid-template-columns: repeat(2, 1fr); }
.videos-grid.video-count-3 { grid-template-columns: repeat(3, 1fr); }
.videos-grid.video-count-4 { grid-template-columns: repeat(2, 1fr); }
.videos-grid.video-count-5 { grid-template-columns: repeat(3, 1fr); }
.videos-grid.video-count-6 { grid-template-columns: repeat(3, 1fr); }

.video-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-title {
    padding: 12px 15px;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

@media (max-width: 992px) {
    .videos-grid,
    .videos-grid.video-count-3,
    .videos-grid.video-count-4,
    .videos-grid.video-count-5,
    .videos-grid.video-count-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .videos-grid,
    .videos-grid.video-count-2,
    .videos-grid.video-count-3,
    .videos-grid.video-count-4 { grid-template-columns: 1fr; }
}

.subcategories-accordion { margin-bottom: 40px; }

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

/* ====================== */
/* L1 - ANA KATEGORİ (RENKLİ HEADER) */
/* ====================== */
.accordion-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: none;
    margin-bottom: 12px;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--item-color) 0%, color-mix(in srgb, var(--item-color) 80%, #000) 100%);
    border-radius: 16px;
}

.accordion-item.active .accordion-header {
    border-radius: 16px 16px 0 0;
}

.accordion-header:hover { 
    filter: brightness(1.05);
}

.accordion-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
    background: var(--item-color);
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-family: 'Patrick Hand', 'Baloo 2', 'Nunito', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.accordion-count {
    display: none;
    font-size: 12px;
    color: var(--item-color);
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accordion-arrow, .accordion-go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--item-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 12px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-arrow { transform: rotate(180deg); }
.accordion-header:hover .accordion-go { transform: translateX(3px); }

.accordion-body { 
    display: none; 
    padding: 15px 15px 20px; 
    background: #fff;
}
.accordion-item.active .accordion-body { display: block; }

.sub-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

/* ====================== */
/* L2 - ALT KATEGORİ (DALGALI GRADİENT) */
/* ====================== */
.sub-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(90deg, 
        color-mix(in srgb, var(--item-color) 25%, white) 0%,
        color-mix(in srgb, var(--item-color) 15%, white) 30%,
        color-mix(in srgb, var(--item-color) 25%, white) 60%,
        color-mix(in srgb, var(--item-color) 18%, white) 100%
    );
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    border-left: 4px solid var(--item-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sub-list-item:hover {
    transform: translateX(5px);
    background: linear-gradient(90deg, 
        color-mix(in srgb, var(--item-color) 35%, white) 0%,
        color-mix(in srgb, var(--item-color) 25%, white) 30%,
        color-mix(in srgb, var(--item-color) 35%, white) 60%,
        color-mix(in srgb, var(--item-color) 28%, white) 100%
    );
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sub-list-item i:first-child { 
    color: white; 
    font-size: 14px;
    width: 32px;
    height: 32px;
    background: var(--item-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub-title { 
    flex: 1; 
    font-family: 'Patrick Hand', 'Baloo 2', 'Nunito', sans-serif;
    font-weight: 600; 
    font-size: 17px; 
    color: #333;
}

.sub-arrow {
    color: var(--item-color);
    opacity: 0.7;
    transition: all 0.3s;
}

.sub-list-item:hover .sub-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.sub-count {
    display: none;
    font-size: 11px;
    color: white;
    background: var(--item-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

/* ====================== */
/* L3 - GRUP (AÇIK RENK ARKA PLAN) */
/* ====================== */
.sub-list-group {
    margin-bottom: 10px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: color-mix(in srgb, var(--item-color) 12%, white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--item-color);
}

.sub-list-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: transparent;
    font-family: 'Patrick Hand', 'Baloo 2', 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.sub-list-header i:first-child { 
    color: white;
    width: 28px;
    height: 28px;
    background: var(--item-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.l4-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.l4-toggle:hover {
    background: color-mix(in srgb, var(--item-color) 8%, white);
}

.l4-arrow {
    margin-left: auto;
    color: var(--item-color);
    transition: transform 0.3s ease;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sub-list-group.open .l4-arrow {
    transform: rotate(180deg);
}

.sub-list-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: white;
}

.sub-list-group.open .sub-list-children {
    max-height: 2000px;
    padding: 10px;
    border-top: 1px solid color-mix(in srgb, var(--item-color) 15%, white);
}

/* ====================== */
/* L4 - EN ALT (BEYAZ, İNCE BORDER) */
/* ====================== */
.sub-list-item-l4 {
    margin-left: 0;
    border-left: 3px solid color-mix(in srgb, var(--item-color) 50%, white);
    background: #fff;
    padding: 12px 14px;
}

.sub-list-item-l4 .sub-title {
    color: #444;
    font-size: 13px;
}

.sub-list-item-l4 i:first-child {
    color: white;
    background: color-mix(in srgb, var(--item-color) 70%, white);
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.sub-list-item-l4 .sub-arrow {
    color: var(--item-color);
}

.sub-list-item-l4:hover {
    background: color-mix(in srgb, var(--item-color) 6%, white);
}

/* Alt Kategori Grid (L4 gösterimi) */
.subcategories-grid-section { margin-bottom: 30px; }
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.subcat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--card-color);
}

.subcat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--card-color);
}

.subcat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.subcat-info { flex: 1; }
.subcat-info h3 { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 3px; }
.subcat-info span { font-size: 12px; color: #888; }
.subcat-arrow { color: #ccc; transition: all 0.3s; }
.subcat-card:hover .subcat-arrow { color: var(--card-color); transform: translateX(5px); }

.content-list-section { margin-top: 30px; }

.section-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header-left h2 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-left h2 i { color: var(--primary); }

.content-count-badge {
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

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

.content-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border-radius: 14px;
    padding: 14px;
    text-decoration: none;
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-list-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
    border-color: var(--primary);
}

.list-item-thumb {
    width: 100px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.list-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-thumb .thumb-placeholder {
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    height: 100%;
}

.list-item-thumb .thumb-placeholder i { font-size: 26px; }

.list-item-info { flex: 1; min-width: 0; }

.list-item-info h4 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.list-item-info p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.list-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
    background: #fef6f6;
    padding: 3px 8px;
    border-radius: 10px;
}

.list-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--gray);
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 10px;
}

.meta-item i { color: var(--primary); }
.list-item-action { flex-shrink: 0; }

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.content-list-item:hover .view-btn { background: var(--secondary); }

.content-list-colorful .colorful-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    border-left: 5px solid var(--item-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.content-list-colorful .colorful-item:nth-child(odd) {
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8F0 100%);
}

.content-list-colorful .colorful-item:nth-child(even) {
    background: linear-gradient(135deg, #F5FBFF 0%, #F0F8FF 100%);
}

.content-list-colorful .colorful-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--item-color);
}

.content-list-colorful .list-item-thumb {
    border-radius: 12px;
    border: 3px solid var(--item-color);
    overflow: hidden;
}

.content-list-colorful .list-item-info h4 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 6px;
}

.content-list-colorful .list-item-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.colorful-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--item-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.colorful-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.colorful-item:hover .colorful-btn {
    background: var(--item-color) !important;
    transform: scale(1.1);
}

.colorful-item:hover .colorful-btn i {
    animation: arrowSlide 0.5s ease forwards;
}

.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 80px; margin-bottom: 20px; }

.empty-state h3 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 14px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244,166,131,0.4);
}

.content-detail {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.detail-left { flex: 0 0 360px; max-width: 100%; }

.detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-image img { width: 100%; height: auto; display: block; }

.image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.image-placeholder i { font-size: 70px; margin-bottom: 12px; }
.image-placeholder span { font-size: 16px; font-weight: 700; }

.detail-right { flex: 1; min-width: 280px; }

.detail-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.detail-category { margin-bottom: 22px; }

.detail-category a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: #fef6f6;
    padding: 6px 14px;
    border-radius: 18px;
    transition: all 0.3s;
}

.detail-category a:hover { background: var(--primary); color: white; }

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 12px;
}

.meta-box i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: var(--primary);
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.meta-label {
    display: block;
    font-size: 10px;
    color: var(--gray);
    margin-bottom: 1px;
    font-weight: 600;
}

.meta-value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #5CD85A 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(92,216,90,0.35);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(92,216,90,0.45);
}

.download-btn i { font-size: 20px; }

.detail-description {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #f0f0f0;
}

.detail-description h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-description h3 i { color: var(--primary); }

.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.similar-section { margin-top: 45px; }

.detail-header {
    background: linear-gradient(135deg, var(--header-color) 0%, color-mix(in srgb, var(--header-color) 80%, #000) 100%) !important;
}

.content-detail-new {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fff9f0 0%, #f0f8ff 35%, #fff0f5 70%, #f5fff0 100%);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 
                0 0 0 3px rgba(177,156,217,0.2),
                inset 0 0 80px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(177,156,217,0.15);
}

/* Oyun tipi içeriklerde (görselsiz geniş kart) */
.content-detail-game .detail-top-section {
    gap: 24px;
}

.content-detail-game .detail-main-info {
    flex: 1;
}

/* Oyun iframe grid (2'li dizilim) */
/* Oyun açıklamasında sadece iframe yapıştırıldığında 2'li yan yana dizilim
   (editor çoğu zaman iframe'leri <p> içine sarıyor, onu da yakalıyoruz) */
.content-detail-game .detail-description-inline p {
    display: inline-block;
    width: 48%;
    margin: 0 1% 20px 1%;
    vertical-align: top;
}

.content-detail-game .detail-description-inline iframe {
    width: 100% !important;
    height: 280px;
}

@media (max-width: 768px) {
    .content-detail-game .detail-description-inline p {
        width: 100%;
        margin: 0 0 16px 0;
        display: block;
    }
}

.content-detail-new::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,107,0.2) 0%, rgba(255,159,67,0.15) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBubble1 8s ease-in-out infinite;
}

.content-detail-new::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(78,205,196,0.2) 0%, rgba(84,160,255,0.15) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBubble2 10s ease-in-out infinite;
}

@keyframes floatBubble1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes floatBubble2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.detail-top-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.detail-image-box {
    flex: 0 0 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 5px solid var(--box-color);
    background: white;
}

.detail-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder-new {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--box-color) 0%, color-mix(in srgb, var(--box-color) 70%, #000) 100%);
    color: white;
}

.image-placeholder-new i { font-size: 70px; margin-bottom: 12px; }
.image-placeholder-new span { font-size: 18px; font-weight: 700; }

.detail-main-info {
    flex: 1;
    min-width: 0;
}

.detail-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--tag-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.detail-category-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.detail-title-new {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-description-inline {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.download-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--btn-color) 0%, color-mix(in srgb, var(--btn-color) 70%, #000) 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.download-btn-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.download-btn-new i { 
    font-size: 24px; 
    color: white !important;
}

.download-btn-new span {
    color: white !important;
    font-size: 20px;
    font-weight: 800;
    display: inline-block;
}

.download-section-center {
    text-align: center;
    margin: 40px 0;
}

.detail-meta-section {
    margin-bottom: 40px;
}

.meta-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.meta-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.meta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--meta-color);
}

.meta-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--meta-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 20px;
}

.meta-card-label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 4px;
    font-weight: 600;
}

.meta-card-value {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

.extra-description-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #A5D6A7;
}

.extra-desc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.extra-desc-header i {
    font-size: 28px;
    color: #43A047;
}

.extra-desc-header h3 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 22px;
    color: #2E7D32;
    margin: 0;
}

.extra-desc-content {
    font-size: 15px;
    line-height: 1.9;
    color: #33691E;
}

@media (max-width: 992px) {
    .detail-top-section { flex-direction: column; }
    .detail-image-box { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }
    .meta-grid-new { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .content-detail-new {
        padding: 20px 16px;
        border-radius: 20px;
    }
    .meta-grid-new { grid-template-columns: repeat(2, 1fr); }
    .detail-title-new { font-size: 26px; }
    .download-btn-new { 
        width: 100%; 
        justify-content: center;
        padding: 16px 30px;
        font-size: 18px;
    }
    .download-btn-new span {
        font-size: 18px;
    }
    .download-btn-new i {
        font-size: 20px;
    }
    .detail-image-box { 
        max-width: 280px; 
        border-width: 4px;
        border-radius: 18px;
    }
    .detail-image-box .image-placeholder-new {
        aspect-ratio: 1/1;
    }
}

@media (max-width: 400px) {
    .detail-image-box { 
        max-width: 220px;
        border-width: 3px;
        border-radius: 14px;
    }
}

.search-results-info { margin-bottom: 22px; }

.results-count {
    background: var(--primary);
    color: white;
    padding: 7px 18px;
    border-radius: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.main-footer {
    background: var(--footer-bg);
    position: relative;
    padding-top: 70px;
    margin-top: 50px;
    overflow: visible;
}

.footer-wave-top {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cellipse cx='60' cy='15' rx='70' ry='45' fill='white'/%3E%3Cellipse cx='150' cy='20' rx='60' ry='40' fill='white'/%3E%3Cellipse cx='240' cy='15' rx='75' ry='48' fill='white'/%3E%3Cellipse cx='340' cy='22' rx='65' ry='42' fill='white'/%3E%3Cellipse cx='440' cy='18' rx='80' ry='50' fill='white'/%3E%3Cellipse cx='540' cy='15' rx='70' ry='45' fill='white'/%3E%3Cellipse cx='640' cy='20' rx='75' ry='48' fill='white'/%3E%3Cellipse cx='750' cy='22' rx='85' ry='52' fill='white'/%3E%3Cellipse cx='860' cy='15' rx='70' ry='45' fill='white'/%3E%3Cellipse cx='960' cy='20' rx='80' ry='50' fill='white'/%3E%3Cellipse cx='1070' cy='18' rx='75' ry='48' fill='white'/%3E%3Cellipse cx='1170' cy='15' rx='70' ry='45' fill='white'/%3E%3Cellipse cx='1280' cy='22' rx='85' ry='52' fill='white'/%3E%3Cellipse cx='1390' cy='15' rx='75' ry='48' fill='white'/%3E%3Crect x='0' y='0' width='1440' height='20' fill='white'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer-mascot {
    position: absolute;
    left: 30px;
    bottom: 80px;
    z-index: 10;
}

.mascot-dino {
    font-size: 120px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: dinoWave 3s infinite ease-in-out;
}

.mascot-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: dinoWave 3s infinite ease-in-out;
}

@keyframes dinoWave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 30px 0 50px;
    padding-left: 180px;
}

.footer-col { color: white; }

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.f-logo-icon { font-size: 40px; }

.f-logo-text {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.social-btn:nth-child(1) { background: #3b5998; }
.social-btn:nth-child(2) { background: #1da1f2; }
.social-btn:nth-child(3) { background: #e4405f; }
.social-btn:nth-child(4) { background: #ff0000; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.footer-links a i {
    font-size: 10px;
    color: #FF6B9D;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #FF6B9D;
    margin-top: 3px;
}

.footer-bottom {
    background: var(--footer-dark);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .featured-grid, .activities-grid { grid-template-columns: repeat(3, 1fr); }
    .slide-title { font-size: 52px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
    .footer-mascot { display: none; }
    .selected-layout { gap: 30px; }
    .selected-center img { width: 260px; height: 340px; }
    .selected-left, .selected-right { max-width: 280px; }
}

@media (max-width: 992px) {
    .slide-content { flex-direction: column; text-align: center; }
    .slide-text { max-width: 100%; }
    .slide-subtitle { justify-content: center; }
    .slide-buttons { justify-content: center; }
    .slide-title { font-size: 44px; }
    .image-frame { width: 220px; height: 220px; }
    .slider-arrow { display: none; }
    .featured-grid, .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .content-detail { flex-direction: column; }
    .detail-left { flex: 1; }
    
    /* header tablet */
    .hamburger-btn { display: flex; }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 20px;
        border-radius: 12px;
    }
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 12px;
        margin-top: 5px;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .search-wrapper { width: 180px; }
    
    .selected-layout { flex-direction: column; gap: 40px; }
    .selected-left, .selected-right { max-width: 100%; flex-direction: row; gap: 30px; }
    .selected-item { flex-direction: column !important; text-align: center !important; }
    .selected-center img { width: 280px; height: 350px; }
}

/* 560px-768px arası tablet için özel ayar */
@media (min-width: 560px) and (max-width: 768px) {
    .activity-card {
        padding: 10px 8px;
        gap: 2px;
    }
    .activity-title {
        margin: 4px 0;
        font-size: 13px;
    }
    .activity-image-wrap {
        margin-bottom: 4px;
    }
    .activity-btn {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .header-content { gap: 10px; }
    .logo-text { font-size: 16px; }
    .search-wrapper { width: 140px; }
    .search-input { padding: 8px 12px; font-size: 12px; }
    .search-btn { padding: 8px 12px; }
    
    .slide { padding: 30px 0 60px; }
    .slide-title { font-size: 28px; }
    .slide-subtitle { font-size: 14px; }
    .slide-desc { font-size: 12px; margin-bottom: 20px; }
    .image-frame { width: 160px; height: 160px; }
    .slider-dots { bottom: 45px; }
    .btn-slide { padding: 10px 18px; font-size: 11px; }
    
    .featured-grid, .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .activity-card { 
        padding: 14px 10px;
        aspect-ratio: 1 / 1;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }
    .activity-card { padding: 16px 12px; min-height: 220px; }
    .activity-title { font-size: 14px; margin: 8px 0; }
    .activity-image-wrap { height: 110px; width: 90%; margin-bottom: 6px; }
    .btn-circle { width: 38px; height: 38px; font-size: 14px; }
    .activity-desc { display: none; }
    
    .content-list-item { flex-direction: column; text-align: center; }
    .list-item-thumb { width: 100%; height: 120px; }
    .list-item-meta { justify-content: center; }
    
    .section-title-center h2 { font-size: 24px; }
    .title-icon { font-size: 36px; }
    .page-title { font-size: 22px; }
    
    .accordion-header { padding: 14px 16px; }
    .accordion-title { font-size: 15px; }
    .accordion-icon { width: 40px; height: 40px; font-size: 16px; }
    .sub-list { padding-left: 0; }
    .sub-list-item { padding: 12px 14px; }
    .sub-title { font-size: 14px; }
    
    /* sizin icin sectiklerimiz mobil */
    .selected-layout {
        flex-direction: column;
        gap: 20px;
    }
    .selected-left {
        order: 1;
        flex-direction: column;
        gap: 15px;
    }
    .selected-center {
        order: 2;
    }
    .selected-right {
        order: 3;
        flex-direction: column;
        gap: 15px;
    }
    .selected-center img {
        width: 200px;
        height: 250px;
        margin: 0 auto;
        display: block;
    }
    .selected-item {
        flex-direction: row !important;
        text-align: left !important;
        background: white;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .left-item, .right-item { 
        flex-direction: row !important; 
        text-align: left !important; 
    }
    .selected-text h3 { font-size: 15px; margin-bottom: 5px; }
    .selected-text p { font-size: 12px; }
    .selected-icon { width: 55px; height: 55px; flex-shrink: 0; }
    .selected-icon i { font-size: 22px; }
    
    /* footer mobil */
    .footer-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; padding-left: 0; }
    .footer-social { justify-content: center; }
    .footer-links a { justify-content: center; }
    .footer-mascot { display: none; }
    .main-footer { padding-top: 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    
    /* header mobil kucuk */
    .header-content { padding: 10px 0; }
    .logo-icon-box { width: 38px; height: 38px; }
    .logo-abc { font-size: 10px; }
    .logo-123 { font-size: 8px; }
    .logo-text { font-size: 14px; }
    .search-wrapper { width: 120px; }
    .search-input { padding: 7px 10px; font-size: 11px; }
    .search-btn { padding: 7px 10px; font-size: 12px; }
    .hamburger-btn { width: 40px; height: 40px; }
    
    /* slider mobil */
    .slide { padding: 25px 0 55px; }
    .slide-title { font-size: 24px; }
    .slide-subtitle { font-size: 13px; }
    .slide-desc { font-size: 11px; line-height: 1.5; }
    .image-frame { width: 140px; height: 140px; border-width: 4px; }
    .frame-decoration { font-size: 20px; }
    .btn-slide { padding: 9px 16px; font-size: 10px; gap: 5px; }
    .slider-dots { bottom: 40px; }
    .dot { width: 8px; height: 8px; }
    
    /* grid mobil */
    .featured-grid, .activities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .featured-card { padding: 14px 10px; border-radius: 16px; }
    .featured-image-wrap { width: 70px; height: 70px; }
    .featured-title { font-size: 12px; }
    .featured-desc { font-size: 10px; }
    .activity-card { 
        padding: 10px 8px;
        aspect-ratio: 1 / 1;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }
    .activity-card { padding: 12px 10px; min-height: 180px; }
    .activity-title { font-size: 12px; margin: 6px 0; }
    .activity-image-wrap { height: 90px; width: 88%; margin-bottom: 4px; }
    .btn-circle { width: 32px; height: 32px; font-size: 12px; }
    .activity-desc { display: none; }
    
    /* section basliklar */
    .section-title-center h2 { font-size: 20px; }
    .title-icon { font-size: 32px; margin-bottom: 8px; }
    .section-subtitle { font-size: 13px; }
    .title-line { width: 60px; height: 3px; }
    
    /* sizin icin sectiklerimiz mobil kucuk */
    .selected-center img { width: 160px; height: 200px; }
    .selected-item { padding: 12px; border-radius: 14px; }
    .selected-text h3 { font-size: 14px; }
    .selected-text p { font-size: 11px; line-height: 1.4; }
    .selected-icon { width: 48px; height: 48px; }
    .selected-icon i { font-size: 20px; }
    .title-sub { font-size: 12px; letter-spacing: 2px; }
    .section-desc { font-size: 13px; }
    
    /* icerik detay mobil */
    .meta-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .meta-card { padding: 15px 10px; border-radius: 12px; }
    .meta-card-icon { width: 40px; height: 40px; font-size: 16px; }
    .meta-card-label { font-size: 10px; }
    .meta-card-value { font-size: 13px; }
    .detail-title-new { font-size: 22px; }
    .download-btn-new { padding: 14px 30px; font-size: 15px; width: 100%; justify-content: center; }
    .download-btn-new i { font-size: 18px; }
    
    /* footer mobil */
    .footer-title { font-size: 18px; margin-bottom: 15px; }
    .footer-desc { font-size: 13px; }
    .f-logo-text { font-size: 18px; }
    .social-btn { width: 36px; height: 36px; font-size: 14px; }
    .footer-bottom p { font-size: 11px; }
    
    /* page header */
    .page-title { font-size: 20px; }
    .breadcrumb { font-size: 11px; }
    .breadcrumb a, .breadcrumb .current { padding: 3px 8px; }
}

/* ====================== */
/* DEKORATIF ELEMENTLER  */
/* ====================== */
.floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* yildizlar */
.float-star {
    position: absolute;
    font-size: 28px;
    animation: floatStar 6s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,200,50,0.4));
}
.star1 { top: 8%; left: 3%; animation-delay: 0s; }
.star2 { top: 15%; right: 5%; animation-delay: -2s; font-size: 22px; }
.star3 { top: 60%; left: 6%; animation-delay: -4s; font-size: 18px; }

/* harfler */
.float-letter {
    position: absolute;
    font-family: 'Patrick Hand', 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 48px;
    opacity: 0.12;
    color: #FF6B6B;
    animation: floatLetter 8s ease-in-out infinite;
}
.letter1 { top: 20%; left: 2%; color: #FF6B6B; animation-delay: 0s; }
.letter2 { top: 40%; right: 3%; color: #4ECDC4; animation-delay: -3s; font-size: 42px; }
.letter3 { top: 70%; left: 5%; color: #FFD93D; animation-delay: -5s; font-size: 38px; }

/* rakamlar */
.float-number {
    position: absolute;
    font-family: 'Patrick Hand', 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 52px;
    opacity: 0.1;
    color: #A66CFF;
    animation: floatNumber 9s ease-in-out infinite;
}
.num1 { top: 30%; right: 6%; color: #A66CFF; animation-delay: 0s; }
.num2 { top: 55%; left: 3%; color: #54A0FF; animation-delay: -4s; font-size: 44px; }
.num3 { top: 75%; right: 4%; color: #FF9F43; animation-delay: -6s; font-size: 40px; }

/* renkli daireler */
.float-circle {
    position: absolute;
    border-radius: 50%;
    animation: floatCircle 7s ease-in-out infinite;
}
.circle1 { 
    top: 12%; 
    right: 8%; 
    width: 20px; 
    height: 20px; 
    background: linear-gradient(135deg, #FF6B6B, #FF9F43);
    animation-delay: 0s; 
}
.circle2 { 
    top: 45%; 
    left: 4%; 
    width: 14px; 
    height: 14px; 
    background: linear-gradient(135deg, #4ECDC4, #54A0FF);
    animation-delay: -2.5s; 
}
.circle3 { 
    top: 80%; 
    right: 6%; 
    width: 18px; 
    height: 18px; 
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
    animation-delay: -4s; 
}

@keyframes floatStar {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-12px) rotate(15deg) scale(1.1); }
    50% { transform: translateY(5px) rotate(-10deg) scale(0.95); }
    75% { transform: translateY(-8px) rotate(8deg) scale(1.05); }
}

@keyframes floatLetter {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(-20px) translateX(10px) rotate(-8deg); }
    66% { transform: translateY(10px) translateX(-5px) rotate(5deg); }
}

@keyframes floatNumber {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(12deg); }
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-25px) scale(1.2); opacity: 0.9; }
}

/* one cikan baslik yildiz */
.title-star {
    display: inline-block;
    margin-right: 8px;
    animation: starPulse 2s ease-in-out infinite;
}

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

/* etkinlikler bolumund ek parlak noktalar */
.activities-section {
    position: relative;
}

.activities-section::before,
.activities-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}
.activities-section::before {
    top: 10%;
    left: -50px;
    background: radial-gradient(circle, #FF6B6B, transparent);
}
.activities-section::after {
    bottom: 10%;
    right: -50px;
    background: radial-gradient(circle, #4ECDC4, transparent);
}

/* mobil icin gizle */
@media (max-width: 768px) {
    .float-letter, .float-number {
        font-size: 32px;
        opacity: 0.08;
    }
    .float-star { font-size: 20px; }
    .float-circle { display: none; }
}

/* logo image */
.logo-img {
    max-height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .logo-img { max-height: 60px; }
}
@media (max-width: 480px) {
    .logo-img { max-height: 50px; }
}

/* ====================== */
/* GELISMIS ARAMA SAYFASI */
/* ====================== */
.advanced-search-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.advanced-search-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.advanced-search-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.advanced-search-form {
    position: relative;
    z-index: 1;
}

.search-main-row {
    margin-bottom: 20px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.search-icon-left {
    font-size: 20px;
    color: #999;
    padding: 0 15px;
}

.advanced-search-input {
    flex: 1;
    border: none;
    font-size: 18px;
    padding: 14px 10px;
    outline: none;
    font-family: 'Patrick Hand', 'Nunito', sans-serif;
    background: transparent;
}

.advanced-search-input::placeholder {
    color: #aaa;
}

.advanced-search-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Patrick Hand', 'Nunito', sans-serif;
}

.advanced-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.search-filters-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.filter-group label i {
    margin-right: 6px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Patrick Hand', 'Nunito', sans-serif;
    font-weight: 600;
    background: rgba(255,255,255,0.95);
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:hover,
.filter-select:focus {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    outline: none;
}

.filter-reset {
    padding: 12px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-reset:hover {
    background: rgba(255,255,255,0.3);
}

.filter-group.filter-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.filter-group.filter-disabled label {
    color: rgba(255,255,255,0.5);
}

.filter-group.filter-disabled .filter-select {
    background: rgba(255,255,255,0.6);
    cursor: not-allowed;
}

.filters-form {
    margin-top: 20px;
}

.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.results-count {
    font-size: 15px;
    color: #333;
}

.results-count i {
    color: #4CAF50;
    margin-right: 8px;
}

.results-filter-info {
    font-size: 13px;
    color: #888;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Search Welcome */
.search-welcome {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border-radius: 24px;
    margin-top: 20px;
}

.welcome-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.search-welcome h3 {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.search-welcome p {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.popular-searches {
    margin-top: 30px;
}

.popular-searches h4 {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.popular-searches h4 i {
    color: #FF6B6B;
    margin-right: 8px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.popular-tag {
    padding: 10px 20px;
    background: white;
    color: #555;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.popular-tag:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .advanced-search-box {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }
    
    .search-icon-left {
        display: none;
    }
    
    .advanced-search-input {
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
        text-align: center;
    }
    
    .advanced-search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .search-filters-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-reset {
        width: 100%;
        justify-content: center;
    }
    
    .search-results-info {
        flex-direction: column;
        text-align: center;
    }
    
    .search-welcome {
        padding: 40px 15px;
    }
    
    .welcome-icon {
        font-size: 48px;
    }
    
    .search-welcome h3 {
        font-size: 22px;
    }
}

/* =============================================
   SON EKLENENLER - Detaylı Card Tasarımı
============================================= */
.son-eklenenler-home {
    padding: 40px 0 50px;
    background: #f8f9ff;
}

.son-eklenenler-home .section-title-center {
    margin-bottom: 25px;
}

.son-eklenenler-home .section-title-center h2 {
    margin-bottom: 8px;
}

.icerik-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.icerik-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.icerik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.icerik-card-image {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.icerik-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    background: white;
}

.icerik-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 40px;
    color: rgba(255,255,255,0.7);
}

.icerik-card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.icerik-card-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.35;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.icerik-card-meta {
    flex-grow: 1;
    margin-bottom: 10px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
    font-size: 12px;
}

.meta-row:last-child {
    border-bottom: none;
    justify-content: center;
    padding-top: 6px;
}

.meta-label {
    color: #888;
    font-weight: 500;
}

.meta-label.meta-date {
    color: #999;
    font-size: 11px;
}

.meta-value {
    color: #333;
    font-weight: 600;
}

.meta-value.highlight {
    color: #FF6B6B;
}

.icerik-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.icerik-card-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.icerik-card-btn i {
    font-size: 12px;
}

/* Tümünü Göster Butonu */
.view-all-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102,126,234,0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Responsive - İçerik Cardları */
@media (max-width: 1200px) {
    .icerik-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .icerik-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .icerik-card-title {
        font-size: 13px;
        min-height: 35px;
    }
}

@media (max-width: 768px) {
    .son-eklenenler-home {
        padding: 30px 0 40px;
    }
    
    .icerik-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .icerik-card-body {
        padding: 10px 12px 12px;
    }
    
    .icerik-card-title {
        font-size: 12px;
        min-height: 32px;
        margin-bottom: 8px;
    }
    
    .meta-row {
        font-size: 11px;
        padding: 3px 0;
    }
    
    .icerik-card-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .btn-view-all {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .son-eklenenler-home {
        padding: 25px 0 35px;
    }
    
    .icerik-cards-grid {
        gap: 10px;
    }
    
    .icerik-card {
        border-radius: 10px;
    }
    
    .icerik-card-body {
        padding: 8px 10px 10px;
    }
    
    .icerik-card-title {
        font-size: 11px;
        min-height: 30px;
        margin-bottom: 6px;
    }
    
    .meta-row {
        font-size: 10px;
    }
    
    .icerik-card-placeholder {
        font-size: 32px;
    }
    
    .view-all-wrapper {
        margin-top: 25px;
    }
}

/* ========== İÇERİK GRID KARTLARI (Kategori sayfası) ========== */
.content-grid-section {
    margin-top: 30px;
}

.content-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.content-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.content-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

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

.content-card:hover .content-card-image img {
    transform: scale(1.08);
}

.content-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3f2 0%, #fde8e8 100%);
}

.content-card-placeholder i {
    font-size: 45px;
    color: #ef4444;
    opacity: 0.7;
}

.content-card-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card-title {
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-card-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 11px;
    color: #64748b;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.content-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    padding: 3px 8px;
    border-radius: 4px;
}

.content-card-meta i {
    color: #94a3b8;
    font-size: 10px;
}

.content-card-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.content-card-btn i {
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.content-card:hover .content-card-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.content-card:hover .content-card-btn i {
    transform: translateX(5px);
}

/* Yeni Görüntüle Butonu */
.content-card-btn-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.content-card-btn-new span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.content-card-btn-new i {
    color: #fff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.content-card:hover .content-card-btn-new {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.content-card:hover .content-card-btn-new i {
    transform: scale(1.2);
}

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

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.page-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
}

.page-link.prev,
.page-link.next {
    gap: 6px;
}

.page-dots {
    color: #a0aec0;
    padding: 0 4px;
}

@media (max-width: 992px) {
    .content-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .content-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .content-card-image {
        height: 180px;
    }
    
    .content-card-title {
        font-size: 14px;
        min-height: auto;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 10px;
    }
    
    .page-link.prev,
    .page-link.next {
        padding: 0 12px;
    }
}

/* ========== FOOTER İSTATİSTİK ========== */
.footer-stats {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-item.online .stat-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.stat-item.online .stat-icon i {
    animation: pulse 1.5s ease-in-out infinite;
}

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

.stat-item.today .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.stat-item.yesterday .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.stat-item.total .stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* ====================== */
/* PAYLASIM KUTUSU        */
/* ====================== */
.share-box {
    margin-top: 25px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 16px;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Paylaş kutusu - her yerde görünür */
.share-box-mobile {
    display: flex;
    margin-top: 25px;
}

.share-box-label {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.share-box-label i {
    color: #A66CFF;
    font-size: 18px;
}

.share-box-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-box-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-box-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.share-box-btn.facebook { background: #4267B2; }
.share-box-btn.twitter { background: #1DA1F2; }
.share-box-btn.whatsapp { background: #25D366; }
.share-box-btn.telegram { background: #0088cc; }
.share-box-btn.copy { background: #6c757d; }

@media (max-width: 576px) {
    .share-box {
        padding: 14px 18px;
        gap: 12px;
        justify-content: center;
    }
    
    .share-box-label {
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .share-box-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }
}

/* ====================== */
/* MOBİL OVERFLOW FİX     */
/* ====================== */
main {
    overflow-x: hidden;
    width: 100%;
}

/* Mobilde taşan dekoratif elementleri gizle */
@media (max-width: 768px) {
    .activities-section::before,
    .activities-section::after {
        display: none;
    }
    
    .floating-decorations {
        display: none;
    }
    
    .slide-bg-elements {
        display: none;
    }
    
    /* Slider ve container taşma önleme */
    .hero-slider,
    .slider-container,
    .slide {
        max-width: 100vw;
    }
}

/* ====================== */
/* UÇUŞAN HARFLER, SAYILAR VE EĞİTİM ARAÇLARI */
/* ====================== */
.floating-education-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-edu {
    position: fixed;
    font-family: 'Patrick Hand', 'Baloo 2', cursive;
    font-weight: 800;
    pointer-events: none;
    z-index: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Harfler - DAHA RENKLİ */
.float-letter-a {
    font-size: 70px;
    color: #FF6B6B;
    opacity: 0.25;
    top: 12%;
    left: 2%;
    animation: floatEdu1 18s ease-in-out infinite;
}

.float-letter-b {
    font-size: 60px;
    color: #4ECDC4;
    opacity: 0.22;
    top: 32%;
    right: 4%;
    animation: floatEdu2 22s ease-in-out infinite;
}

.float-letter-c {
    font-size: 55px;
    color: #FFD93D;
    opacity: 0.28;
    top: 58%;
    left: 6%;
    animation: floatEdu3 20s ease-in-out infinite;
}

.float-letter-d {
    font-size: 65px;
    color: #A66CFF;
    opacity: 0.2;
    top: 78%;
    right: 10%;
    animation: floatEdu1 25s ease-in-out infinite reverse;
}

.float-letter-e {
    font-size: 58px;
    color: #FF9F43;
    opacity: 0.24;
    top: 22%;
    left: 42%;
    animation: floatEdu4 19s ease-in-out infinite;
}

.float-letter-f {
    font-size: 52px;
    color: #6BCB77;
    opacity: 0.22;
    top: 48%;
    right: 25%;
    animation: floatEdu2 21s ease-in-out infinite reverse;
}

/* Sayılar - DAHA RENKLİ */
.float-num-1 {
    font-size: 75px;
    color: #54A0FF;
    opacity: 0.26;
    top: 8%;
    right: 12%;
    animation: floatEdu2 21s ease-in-out infinite;
}

.float-num-2 {
    font-size: 62px;
    color: #5CD85A;
    opacity: 0.24;
    top: 42%;
    left: 1%;
    animation: floatEdu3 24s ease-in-out infinite;
}

.float-num-3 {
    font-size: 68px;
    color: #FF6B9D;
    opacity: 0.22;
    top: 68%;
    right: 2%;
    animation: floatEdu1 17s ease-in-out infinite;
}

.float-num-4 {
    font-size: 58px;
    color: #00BCD4;
    opacity: 0.2;
    top: 52%;
    left: 48%;
    animation: floatEdu4 23s ease-in-out infinite reverse;
}

.float-num-5 {
    font-size: 64px;
    color: #9C27B0;
    opacity: 0.23;
    top: 88%;
    left: 22%;
    animation: floatEdu2 20s ease-in-out infinite;
}

/* Matematik Sembolleri */
.float-symbol-plus {
    font-size: 55px;
    color: #E91E63;
    opacity: 0.28;
    top: 18%;
    left: 72%;
    animation: floatEdu3 16s ease-in-out infinite;
}

.float-symbol-minus {
    font-size: 50px;
    color: #3F51B5;
    opacity: 0.22;
    top: 75%;
    left: 55%;
    animation: floatEdu1 19s ease-in-out infinite;
}

.float-symbol-multiply {
    font-size: 48px;
    color: #009688;
    opacity: 0.25;
    top: 38%;
    left: 85%;
    animation: floatEdu4 17s ease-in-out infinite reverse;
}

.float-symbol-star {
    font-size: 50px;
    color: #FFC107;
    opacity: 0.35;
    top: 38%;
    left: 12%;
    animation: floatEdu1 26s ease-in-out infinite reverse;
}

.float-symbol-heart {
    font-size: 45px;
    color: #F44336;
    opacity: 0.3;
    top: 62%;
    right: 18%;
    animation: floatEdu4 18s ease-in-out infinite;
}

/* Eğitim Araç Gereçleri (İkonlar) */
.float-tool-pencil {
    font-size: 40px;
    color: #FF7043;
    opacity: 0.3;
    top: 28%;
    left: 88%;
    animation: floatEdu2 22s ease-in-out infinite reverse;
}

.float-tool-ruler {
    font-size: 38px;
    color: #5C6BC0;
    opacity: 0.28;
    top: 72%;
    left: 68%;
    animation: floatEdu3 19s ease-in-out infinite;
}

.float-tool-compass {
    font-size: 42px;
    color: #26A69A;
    opacity: 0.25;
    top: 15%;
    left: 58%;
    animation: floatEdu1 24s ease-in-out infinite;
}

.float-tool-book {
    font-size: 38px;
    color: #8D6E63;
    opacity: 0.28;
    top: 85%;
    left: 8%;
    animation: floatEdu4 20s ease-in-out infinite reverse;
}

.float-tool-palette {
    font-size: 40px;
    color: #EC407A;
    opacity: 0.26;
    top: 45%;
    right: 8%;
    animation: floatEdu2 18s ease-in-out infinite;
}

.float-tool-calculator {
    font-size: 36px;
    color: #42A5F5;
    opacity: 0.24;
    top: 5%;
    left: 30%;
    animation: floatEdu3 21s ease-in-out infinite reverse;
}

.float-tool-scissors {
    font-size: 35px;
    color: #7E57C2;
    opacity: 0.27;
    top: 58%;
    left: 30%;
    animation: floatEdu1 23s ease-in-out infinite;
}

.float-tool-paintbrush {
    font-size: 38px;
    color: #EF5350;
    opacity: 0.25;
    top: 92%;
    right: 35%;
    animation: floatEdu4 16s ease-in-out infinite;
}

/* Animasyonlar */
@keyframes floatEdu1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -25px) rotate(8deg); }
    50% { transform: translate(-15px, 20px) rotate(-5deg); }
    75% { transform: translate(25px, 15px) rotate(10deg); }
}

@keyframes floatEdu2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, 30px) rotate(-8deg); }
    66% { transform: translate(20px, -20px) rotate(6deg); }
}

@keyframes floatEdu3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.15); }
}

@keyframes floatEdu4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, 15px) rotate(-10deg); }
    50% { transform: translate(25px, -25px) rotate(8deg); }
    75% { transform: translate(-15px, -10px) rotate(-5deg); }
}

/* Tablet için boyut ayarı */
@media (max-width: 992px) {
    .float-edu { opacity: 0.18; }
    .float-letter-a, .float-letter-b, .float-letter-c, .float-letter-d, .float-letter-e, .float-letter-f { font-size: 45px; }
    .float-num-1, .float-num-2, .float-num-3, .float-num-4, .float-num-5 { font-size: 50px; }
    .float-symbol-plus, .float-symbol-minus, .float-symbol-multiply, .float-symbol-star, .float-symbol-heart { font-size: 38px; }
    .float-tool-pencil, .float-tool-ruler, .float-tool-compass, .float-tool-book, 
    .float-tool-palette, .float-tool-calculator, .float-tool-scissors, .float-tool-paintbrush { font-size: 32px; }
}

/* Mobilde daha az ve küçük */
@media (max-width: 576px) {
    .float-edu { opacity: 0.12; }
    .float-letter-c, .float-letter-d, .float-letter-e, .float-letter-f,
    .float-num-3, .float-num-4, .float-num-5,
    .float-symbol-minus, .float-symbol-multiply, .float-symbol-heart,
    .float-tool-compass, .float-tool-palette, .float-tool-calculator, .float-tool-scissors, .float-tool-paintbrush {
        display: none;
    }
    .float-letter-a, .float-letter-b { font-size: 35px; }
    .float-num-1, .float-num-2 { font-size: 40px; }
    .float-symbol-plus, .float-symbol-star { font-size: 30px; }
    .float-tool-pencil, .float-tool-ruler, .float-tool-book { font-size: 26px; }
}
