* {
    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; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    min-height: 100vh;
    color: var(--dark);
    overflow-x: hidden;
}

/* 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: '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;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.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: '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;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

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

.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: 200px;
    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: 100;
}

.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: 10px;
    flex-shrink: 0;
}

.search-wrapper {
    width: 220px;
    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-slider { position: relative; overflow: hidden; }
.hero-slider-tall .slide { padding: 60px 0 100px; }
.slider-container { position: relative; width: 100%; }

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    background: var(--slide-color);
    padding: 50px 0 80px;
    overflow: hidden;
}

.slide-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-handprint {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-30deg);
}

.bp-1 { top: 10%; left: 3%; }
.bp-2 { bottom: 20%; right: 5%; transform: rotate(30deg); }

.bg-crayon {
    position: absolute;
    width: 12px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.cr-1 { bottom: 25%; left: 8%; transform: rotate(40deg); }
.cr-2 { top: 35%; right: 10%; transform: rotate(-25deg); }

.bg-star-float, .bg-heart-float, .bg-note-float {
    position: absolute;
    font-size: 35px;
    color: rgba(255,255,255,0.12);
}

.sf-1 { top: 15%; left: 8%; }
.sf-2 { bottom: 30%; right: 12%; font-size: 28px; }

.bg-circle-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cf-1 { top: 25%; right: 20%; }

.hf-1 { top: 12%; right: 22%; font-size: 30px; }
.hf-2 { bottom: 25%; left: 6%; font-size: 24px; }
.nf-1 { top: 28%; left: 10%; font-size: 28px; }

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.slide-text { flex: 1; max-width: 520px; }

.slide-subtitle {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.emoji-inline { font-size: 24px; animation: bounce 2s infinite; }

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

.slide-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.slide-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 420px;
}

.slide-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-slide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover { background: rgba(255,255,255,0.3); }

.slide-image { flex-shrink: 0; }

.image-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
}

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

.frame-decoration {
    position: absolute;
    font-size: 28px;
    z-index: 5;
    animation: floatDecor 3s infinite ease-in-out;
}

.fd-1 { top: -5px; right: 15px; }
.fd-2 { bottom: 5px; right: -5px; animation-delay: -1.5s; }

@keyframes floatDecor {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(8deg); }
}

.frame-alt { background: linear-gradient(135deg, #98D8C8 0%, #7ECFC0 100%); }
.frame-purple { background: linear-gradient(135deg, #C9B1FF 0%, #B19CD9 100%); }

.slide-wave-zigzag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: white;
    clip-path: polygon(
        0% 100%, 0% 60%,
        2.5% 40%, 5% 60%, 7.5% 40%, 10% 60%, 12.5% 40%, 15% 60%, 17.5% 40%, 20% 60%,
        22.5% 40%, 25% 60%, 27.5% 40%, 30% 60%, 32.5% 40%, 35% 60%, 37.5% 40%, 40% 60%,
        42.5% 40%, 45% 60%, 47.5% 40%, 50% 60%, 52.5% 40%, 55% 60%, 57.5% 40%, 60% 60%,
        62.5% 40%, 65% 60%, 67.5% 40%, 70% 60%, 72.5% 40%, 75% 60%, 77.5% 40%, 80% 60%,
        82.5% 40%, 85% 60%, 87.5% 40%, 90% 60%, 92.5% 40%, 95% 60%, 97.5% 40%, 100% 60%,
        100% 100%
    );
}

.slider-dots {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active { background: white; transform: scale(1.3); }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-65%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover { transform: translateY(-65%) scale(1.1); }
.arrow-prev { left: 25px; }
.arrow-next { right: 25px; }

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

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

.section-title-center h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 38px;
    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: 16px;
    margin-top: 15px;
}

.activities-section {
    padding: 80px 0;
    background: #fff;
}

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

/* ====================== */
/* WAVY EDGE CARDS        */
/* Gorseldeki gibi dalgali kenarli kartlar */
/* ====================== */
.activity-card {
    background: var(--card-bg);
    padding: 26px 18px 24px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    /* Gorseldeki gibi ust koseleri buyuk, alt daha kucuk yuvarlatilmis */
    border-radius: 45% 45% 35% 35% / 8% 8% 6% 6%;
    overflow: visible;
}

/* Her kart icin farkli dalgali sekil */
.activity-card:nth-child(4n+1) {
    border-radius: 48% 42% 38% 32% / 9% 7% 5% 7%;
}
.activity-card:nth-child(4n+2) {
    border-radius: 42% 48% 32% 38% / 7% 9% 7% 5%;
}
.activity-card:nth-child(4n+3) {
    border-radius: 45% 45% 35% 35% / 8% 8% 6% 6%;
}
.activity-card:nth-child(4n+4) {
    border-radius: 40% 50% 30% 40% / 7% 8% 6% 7%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.activity-title {
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 800;
    color: var(--card-text);
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.activity-image-wrap {
    width: 90%;
    height: 160px;
    margin-bottom: 14px;
    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: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255,255,255,0.4);
}

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

.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: 'Baloo 2', cursive;
    font-size: 32px;
    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; }

.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;
}

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

.accordion-item {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 2px solid #f0f0f0;
    border-left: 5px solid var(--item-color);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover { background: #fafafa; }

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

.accordion-title {
    flex: 1;
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.accordion-count {
    font-size: 11px;
    color: var(--gray);
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.accordion-arrow, .accordion-go {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--item-color);
    color: white;
    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: 0 20px 20px; }
.accordion-item.active .accordion-body { display: block; }

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

.sub-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sub-list-item:hover {
    border-color: var(--primary);
    background: #fef6f6;
    transform: translateX(5px);
}

.sub-list-item i:first-child { color: var(--primary); font-size: 14px; }
.sub-title { flex: 1; font-weight: 700; font-size: 14px; }
.sub-count {
    font-size: 10px;
    color: var(--gray);
    background: #eee;
    padding: 3px 8px;
    border-radius: 10px;
}

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

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

.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: '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: '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: '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: 'Baloo 2', cursive;
    font-size: 30px;
    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: '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;
}

.detail-top-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.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: 'Baloo 2', cursive;
    font-size: 34px;
    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;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--btn-color) 0%, color-mix(in srgb, var(--btn-color) 80%, #000) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.download-btn-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

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

.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: '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) {
    .meta-grid-new { grid-template-columns: repeat(2, 1fr); }
    .detail-title-new { font-size: 26px; }
    .download-btn-new { width: 100%; justify-content: center; }
}

.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: 100px;
    overflow: visible;
}

.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    clip-path: polygon(
        0% 0%, 0% 70%,
        2% 50%, 4% 70%, 6% 50%, 8% 70%, 10% 50%, 12% 70%, 14% 50%, 16% 70%, 18% 50%, 20% 70%,
        22% 50%, 24% 70%, 26% 50%, 28% 70%, 30% 50%, 32% 70%, 34% 50%, 36% 70%, 38% 50%, 40% 70%,
        42% 50%, 44% 70%, 46% 50%, 48% 70%, 50% 50%, 52% 70%, 54% 50%, 56% 70%, 58% 50%, 60% 70%,
        62% 50%, 64% 70%, 66% 50%, 68% 70%, 70% 50%, 72% 70%, 74% 50%, 76% 70%, 78% 50%, 80% 70%,
        82% 50%, 84% 70%, 86% 50%, 88% 70%, 90% 50%, 92% 70%, 94% 50%, 96% 70%, 98% 50%, 100% 70%,
        100% 0%
    );
}

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

@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: 14px; }
    .activity-card { 
        padding: 20px 14px 20px; 
        min-height: 320px;
        border-radius: 40% 40% 30% 30% / 7% 7% 5% 5%;
    }
    .activity-title { font-size: 15px; margin-bottom: 12px; }
    .activity-image-wrap { height: 130px; width: 88%; margin-bottom: 12px; }
    .activity-desc { font-size: 13px; margin-bottom: 12px; -webkit-line-clamp: 2; }
    
    .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: 12px 14px; }
    .accordion-title { font-size: 14px; }
    .sub-list { padding-left: 0; }
    
    /* 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: 10px; }
    .featured-card { padding: 16px 12px; border-radius: 18px; }
    .featured-image-wrap { width: 80px; height: 80px; }
    .featured-title { font-size: 13px; }
    .featured-desc { font-size: 10px; }
    .activity-card { 
        padding: 16px 12px 16px; 
        min-height: 280px;
        border-radius: 38% 38% 28% 28% / 6% 6% 5% 5%;
    }
    .activity-title { font-size: 13px; margin-bottom: 10px; }
    .activity-image-wrap { height: 110px; width: 85%; margin-bottom: 10px; }
    .activity-desc { font-size: 12px; margin-bottom: 10px; padding: 0 8px; -webkit-line-clamp: 2; }
    .btn-circle { width: 38px; height: 38px; font-size: 14px; }
    
    /* 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: '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: '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: 50px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .logo-img { max-height: 40px; }
}
@media (max-width: 480px) {
    .logo-img { max-height: 35px; }
}

/* ====================== */
/* 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: '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: '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: '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: '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;
    }
}
