/* ===================================================
   SDM HABER - ANA TEMA CSS
   Profesyonel Haber Sitesi | Modern Tasarım
=================================================== */

/* --- ROOT VARIABLES --- */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: rgba(230, 57, 70, 0.1);
    --bg-dark: #0d0d1a;
    --bg-card: #12121f;
    --bg-nav: #0a0a16;
    --bg-body: #f0f2f5;
    --text-primary: #1a1a2e;
    --text-secondary: #555;
    --text-muted: #888;
    --text-white: #fff;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-primary); cursor: pointer; border: none; background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- BREAKING NEWS BAR --- */
.breaking-bar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
}
.breaking-bar .container { display: flex; align-items: center; gap: 0; }
.breaking-label {
    background: rgba(0,0,0,0.25);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 16px;
}
.ticker-wrapper { overflow: hidden; flex: 1; }
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    animation: ticker 40s linear infinite;
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- HEADER --- */
.site-header {
    background: var(--bg-dark);
    border-bottom: 3px solid var(--primary);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    gap: 16px;
    position: relative;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    box-shadow: 0 4px 12px rgba(230,57,70,0.4);
}
.logo-main { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.logo-sub { font-size: 11px; color: var(--primary); font-weight: 700; letter-spacing: 3px; display: block; }
.header-meta { color: rgba(255,255,255,0.5); font-size: 13px; }
.header-meta i { margin-right: 6px; }
.header-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    position: absolute; 
    right: 16px; 
    top: 50%; 
    transform: translateY(-50%); 
}
.search-toggle, .btn-login {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.search-toggle:hover, .btn-login:hover { background: var(--primary); }
.btn-admin {
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.btn-admin:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Search Bar */
.search-bar {
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    display: none;
}
.search-bar.open { display: block; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.search-form {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 16px;
}
.search-form i { color: rgba(255,255,255,0.4); font-size: 15px; }
.search-form input {
    flex: 1; background: none; border: none; outline: none;
    color: #fff; font-size: 15px; font-family: var(--font-primary);
}
.search-form input::placeholder { color: rgba(255,255,255,0.3); }
.search-form button[type="submit"] {
    background: var(--primary);
    color: #fff; border: none; border-radius: 6px;
    padding: 6px 18px; font-weight: 600; font-size: 13px;
    transition: var(--transition);
}
.search-form button[type="submit"]:hover { background: var(--primary-dark); }
.search-close { color: rgba(255,255,255,0.5); font-size: 16px; }
.search-close:hover { color: var(--primary); }

/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.mobile-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px; transition: var(--transition);
}

/* --- NAVIGATION --- */
.main-nav {
    background: var(--bg-nav);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-list {
    display: flex; align-items: center; gap: 0; overflow-x: auto;
    scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list li a {
    display: block;
    padding: 14px 18px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    transition: var(--transition);
}
.nav-list li a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 3px; background: var(--primary);
    transition: var(--transition);
}
.nav-list li a:hover, .nav-list li a.active { color: #fff; }
.nav-list li a:hover::after, .nav-list li a.active::after { left: 0; right: 0; }
.nav-list li a i { margin-right: 4px; font-size: 12px; }

.mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

/* --- MAIN CONTENT --- */
.main-content { min-height: 60vh; padding: 32px 0; }

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}
.main-col { min-width: 0; }

/* --- SECTION HEADERS --- */
.section { margin-bottom: 40px; }
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.section-title { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.section-title span {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 2px;
}
.section-line { flex: 1; height: 2px; background: var(--border); margin: 0 16px; }
.view-all { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.view-all:hover { color: var(--primary-dark); }

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative; overflow: hidden;
    height: 520px;
    background: var(--bg-dark);
}
.slider-container { width: 100%; height: 100%; position: relative; }
.slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.8s ease;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }
.slide-image { position: absolute; inset: 0; }
.slide-image img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.3) 100%);
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; }
.slide-inner { max-width: 600px; padding: 0 32px; }
.slide-category {
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px;
}
.badge-breaking {
    display: inline-block; background: var(--primary); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
    margin-left: 8px; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.slide-title { font-size: 32px; font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 16px; }
.slide-title a { color: #fff; }
.slide-title a:hover { color: var(--primary); }
.slide-meta { display: flex; gap: 20px; color: rgba(255,255,255,0.7); font-size: 13px; }
.slide-meta span { display: flex; align-items: center; gap: 6px; }

/* Slider Controls */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    z-index: 10;
}
.slider-btn:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* --- FEATURED NEWS GRID --- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.featured-card { 
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-md); 
    overflow: hidden; 
    background: #fff; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-card .card-image { position: relative; overflow: hidden; width: 100%; }
.featured-card .card-image img { 
    width: 100%; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.card-category {
    position: absolute; top: 12px; left: 12px;
    color: #fff; padding: 3px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.badge-breaking-small {
    position: absolute; top: 12px; right: 12px;
    background: var(--primary); color: #fff;
    padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
}
.card-body { 
    padding: 16px; 
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.card-title a:hover { color: var(--primary); }
.card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-top: auto; }
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* --- NEWS LIST --- */
.news-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.news-list-card {
    display: flex; gap: 12px;
    background: #fff; border-radius: var(--radius-md);
    padding: 14px; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.news-list-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.news-list-image { flex-shrink: 0; width: 100px; height: 75px; border-radius: var(--radius-sm); overflow: hidden; }
.news-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-list-card:hover .news-list-image img { transform: scale(1.08); }
.news-list-body { flex: 1; min-width: 0; }
.news-category-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.news-list-title { font-size: 14px; font-weight: 700; line-height: 1.4; margin: 4px 0 8px; }
.news-list-title a:hover { color: var(--primary); }
.news-list-summary { font-size: 12px; color: var(--text-secondary); margin-bottom: 6px; }
.news-list-meta { display: flex; gap: 10px; font-size: 11px; color: var(--text-muted); }
.news-list-meta span { display: flex; align-items: center; gap: 4px; }

/* --- CATEGORY SECTION (NEW PREMIUM DESIGN) --- */
.cat-section { margin-bottom: 40px; }

.cat-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}
.cat-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--cat-color, var(--primary));
    border-radius: 2px;
}
.cat-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cat-section-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cat-section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin: 0;
}
.cat-section-all {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    white-space: nowrap;
}
.cat-section-all:hover { opacity: 0.75; gap: 8px; }

/* 3 Sütunlu Kart Grid */
.cat-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cat-grid-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}
.cat-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.cat-grid-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eee;
}
.cat-grid-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cat-grid-card:hover .cat-grid-img img { transform: scale(1.06); }

.cat-grid-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    z-index: 2;
    line-height: 1.4;
}
.cat-grid-breaking {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}

.cat-grid-body {
    padding: 12px 14px 16px;
    flex: 1;
}
.cat-grid-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s;
}
.cat-grid-card:hover .cat-grid-title { color: var(--primary); }


/* --- SPOR FULL-WIDTH SECTION --- */
.spor-fullwidth-section {
    margin: 32px 0;
    overflow: hidden;
}
.spor-field-bg {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 28px,
            rgba(255,255,255,0.07) 28px,
            rgba(255,255,255,0.07) 30px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.05) 60px,
            rgba(255,255,255,0.05) 62px
        ),
        linear-gradient(135deg, #1a6b1a 0%, #0f4d0f 40%, #1e7b1e 70%, #145214 100%);
    padding: 28px 0 32px;
    border-top: 4px solid #2ea82e;
    border-bottom: 4px solid #2ea82e;
}
.spor-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.spor-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.spor-icon {
    font-size: 22px;
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}
.spor-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}
.spor-all-link {
    font-size: 12px;
    font-weight: 700;
    color: #a8e6a8;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
}
.spor-all-link:hover { color: #fff; gap: 10px; }

/* Scroll wrapper */
.spor-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
}
.spor-track {
    display: flex;
    gap: 14px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 4px 2px 8px;
}
.spor-scroll-btn {
    flex-shrink: 0;
    width: 36px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spor-scroll-btn:hover { background: rgba(255,255,255,0.25); }
.spor-prev { margin-right: 10px; }
.spor-next { margin-left: 10px; }

/* Each spor card */
.spor-card {
    flex: 0 0 calc((100% - 6 * 14px) / 7);
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s, box-shadow 0.25s;
    backdrop-filter: blur(4px);
}
.spor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.3);
}
.spor-card-img {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.spor-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.spor-card:hover .spor-card-img img { transform: scale(1.07); }
.spor-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.spor-card-body {
    padding: 10px 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.spor-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s;
}
.spor-card:hover .spor-card-title { color: #a8e6a8; }
.spor-card-time {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- SIDEBAR --- */
.sidebar { position: static; }
.widget { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin-bottom: 24px; overflow: hidden; }
.widget-header {
    background: var(--text-primary);
    padding: 14px 18px;
}
.widget-header h3 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.widget-header h3 i { margin-right: 8px; color: var(--primary); }

/* Popular List */
.popular-list { padding: 12px 0; }
.popular-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { background: #fafafa; }
.popular-num { font-size: 22px; font-weight: 900; color: #eee; min-width: 36px; line-height: 1; }
.popular-item:nth-child(1) .popular-num { color: var(--primary); }
.popular-item:nth-child(2) .popular-num { color: #ff6b35; }
.popular-item:nth-child(3) .popular-num { color: #ffa500; }
.popular-content { flex: 1; min-width: 0; }
.popular-title { font-size: 13px; font-weight: 600; line-height: 1.4; display: block; }
.popular-title:hover { color: var(--primary); }
.popular-meta { display: flex; gap: 10px; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Breaking Widget */
.widget-breaking .widget-header { background: var(--primary); }
.breaking-list { padding: 8px 0; }
.breaking-list li { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.breaking-list li:last-child { border-bottom: none; }
.breaking-list li a { font-size: 13px; font-weight: 500; display: block; margin-bottom: 4px; line-height: 1.4; }
.breaking-list li a:hover { color: var(--primary); }
.breaking-dot { font-size: 7px; color: var(--primary); margin-right: 6px; animation: pulse 1.5s infinite; }
.meta-time { font-size: 11px; color: var(--text-muted); }

/* Categories Widget */
.category-widget-list { padding: 8px 0; }
.category-widget-list li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
    transition: var(--transition);
}
.category-widget-list li a:hover { background: #fafafa; color: var(--cat-color, var(--primary)); }
.cat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cat-count { margin-left: auto; background: var(--bg-body); padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; color: var(--text-muted); }

/* --- ARTICLE STYLES --- */
.article-content { max-width: 100%; }
.breadcrumb-nav ol { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb-nav ol li:not(:last-child)::after { content: '/'; margin-left: 8px; }
.breadcrumb-nav ol li a { color: var(--primary); }
.article-badges { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.cat-badge { padding: 4px 14px; border-radius: 20px; color: #fff; font-size: 12px; font-weight: 700; }
.breaking-badge-lg { background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.article-title { font-size: 32px; font-weight: 900; line-height: 1.3; color: var(--text-primary); margin-bottom: 16px; font-family: var(--font-serif); }
.article-summary { font-size: 18px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; font-style: italic; border-left: 4px solid var(--primary); padding-left: 20px; }
.article-meta { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.article-author { display: flex; align-items: center; gap: 12px; }
.author-avatar-sm { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.author-name { font-weight: 700; font-size: 14px; display: block; }
.author-name:hover { color: var(--primary); }
.meta-time { font-size: 12px; color: var(--text-muted); }
.article-stats { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }
.article-stats span { display: flex; align-items: center; gap: 6px; }

/* Share Buttons */
.share-buttons { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #fff; transition: var(--transition); }
.share-btn:hover { transform: translateY(-2px); }
.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }
.share-copy { background: var(--text-muted); }

/* Article Featured Image */
.article-featured-image { margin-bottom: 28px; border-radius: var(--radius-lg); overflow: hidden; }
.article-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.article-featured-image figcaption { padding: 10px 16px; font-size: 13px; color: var(--text-muted); background: #f8f8f8; text-align: center; }

/* Article Body */
.article-body {
    font-size: 17px; line-height: 1.8; color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 32px;
}
.article-body p { margin-bottom: 20px; }
.article-body h2, .article-body h3 { font-family: var(--font-primary); font-weight: 800; margin: 28px 0 14px; }
.article-body h2 { font-size: 24px; border-left: 4px solid var(--primary); padding-left: 16px; }
.article-body h3 { font-size: 20px; }
.article-body blockquote { border-left: 4px solid var(--primary); background: var(--primary-light); padding: 20px 24px; margin: 24px 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; font-size: 18px; }
.article-body img { border-radius: var(--radius-md); margin: 20px 0; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--primary); text-decoration: underline; }

/* Article Source */
.article-source { font-size: 13px; color: var(--text-muted); background: #f8f8f8; padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.article-source a { color: var(--primary); }

/* Article Tags */
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tags-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.tag-pill { background: var(--bg-body); border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.tag-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Author Box */
.author-box { display: flex; gap: 20px; background: #f8f9fa; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 36px; border: 1px solid var(--border); }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); flex-shrink: 0; }
.author-info h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.author-info h4 a:hover { color: var(--primary); }
.author-info p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
.author-social { display: flex; gap: 10px; }
.author-social a { width: 32px; height: 32px; background: var(--text-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
.author-social a:hover { background: var(--primary); transform: scale(1.1); }

/* Related News */
.related-news { margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card .card-image { overflow: hidden; }
.related-card .card-image img { height: 160px; width: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover .card-image img { transform: scale(1.05); }
.related-card .card-body { padding: 12px; }
.related-card .card-body h4 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.related-card .card-body h4 a:hover { color: var(--primary); }

/* Comments */
.comments-section { margin-bottom: 40px; }
.comments-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.comments-list { margin-bottom: 32px; }
.comment-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-item:last-child { border-bottom: none; }
.comment-avatar { flex-shrink: 0; }
.comment-avatar img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); }
.comment-content { flex: 1; }
.comment-header { display: flex; gap: 10px; align-items: baseline; margin-bottom: 6px; }
.comment-header strong { font-weight: 700; }
.comment-header span { font-size: 12px; color: var(--text-muted); }
.comment-content p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* Comment Form */
.comment-form-wrap { background: #f8f9fa; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.comment-form-wrap h4 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-primary);
    font-size: 14px; transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.field-error { color: var(--primary); font-size: 12px; margin-top: 4px; display: block; }
.btn-submit { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; border-radius: var(--radius-sm); padding: 12px 28px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,57,70,0.4); }

/* Alert */
.alert { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* Page Header */
.page-header { border-left: 5px solid var(--primary); padding: 20px 24px; background: #fff; border-radius: var(--radius-md); margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.page-header h1 { font-size: 28px; font-weight: 900; }
.page-header h1 span { color: var(--primary); }
.page-header p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* Empty State */
.empty-state { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--radius-md); }
.empty-state i { font-size: 48px; color: #ddd; margin-bottom: 16px; display: block; }
.empty-state p { color: var(--text-muted); font-size: 16px; }

/* Pagination */
.pagination-wrap { margin-top: 32px; display: flex; justify-content: center; }
.pagination-wrap nav { display: flex; gap: 6px; align-items: center; }

/* Author Profile */
.author-profile { margin-bottom: 32px; }
.author-profile-card { display: flex; gap: 28px; align-items: flex-start; background: linear-gradient(135deg, var(--bg-dark), #1a1a3e); padding: 40px; border-radius: var(--radius-lg); color: #fff; }
.author-profile-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); flex-shrink: 0; }
.author-profile-card h1 { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.author-role { display: inline-block; background: var(--primary); padding: 3px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.author-profile-card p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* --- FOOTER --- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); margin-top: 60px; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: #fff; font-size: 20px; font-weight: 900; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 13px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links li a i { font-size: 10px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.footer-contact li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.social-btn:hover { transform: translateY(-3px) scale(1.1); }
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #000; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* --- CURRENCY WIDGET --- */
.widget-currency {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}
.currency-item:hover {
    background: #fcfcfd;
}
.currency-item:nth-child(2n) {
    border-right: none;
}
.currency-item:nth-last-child(1), .currency-item:nth-last-child(2) {
    border-bottom: none;
}
.currency-item.loading {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    color: var(--text-muted);
}
.currency-code-name {
    display: flex;
    flex-direction: column;
}
.currency-code {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-primary);
}
.currency-name {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 1px;
}
.currency-value-change {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.currency-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: monospace;
}
.currency-change {
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 1px;
}
.currency-change.up { color: #22c55e; }
.currency-change.down { color: #ef4444; }
.currency-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #ef4444;
    font-size: 12px;
}
.currency-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    font-size: 10px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}
.currency-footer button {
    color: var(--text-muted);
    font-size: 10px;
    transition: var(--transition);
}
.currency-footer button:hover {
    color: var(--primary);
    transform: rotate(180deg);
}

/* d-none-mobile */
@media (max-width: 900px) { .d-none-mobile { display: none !important; } }
/* d-none-desktop */
@media (min-width: 901px) { .d-none-desktop { display: none !important; } }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .content-grid { grid-template-columns: 1fr 300px; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .hero-slider { height: 400px; }
    .slide-title { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-title { font-size: 24px; }
    .news-list-grid { grid-template-columns: 1fr; }
    .cat-grid-3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .mobile-menu-toggle { display: flex; }
    .main-nav { position: fixed; left: -100%; top: 0; bottom: 0; width: 280px; z-index: 999; background: var(--bg-dark); padding-top: 70px; transition: var(--transition); overflow-y: auto; }
    .main-nav.open { left: 0; }
    .mobile-overlay.open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-list li a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-list li a::after { display: none; }
    .hero-slider { height: 300px; }
    .slide-title { font-size: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .cat-grid-3col { grid-template-columns: 1fr; }
}

/* --- SPLIT HERO SLIDER LAYOUT --- */
.hero-split-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.main-slider-wrap {
    flex: 0 0 68%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.right-manset-wrap {
    flex: 0 0 calc(32% - 20px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #11111f;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Left Slider Styles */
.main-slider-wrap .hero-slider {
    position: relative;
    height: 400px;
    background: var(--bg-dark);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}
.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    pointer-events: all !important;
}
.slide-inner-flex {
    display: flex;
    width: 100%;
    height: 100%;
}
.slide-visual {
    flex: 0 0 60%;
    position: relative;
    height: 100%;
}
.slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-caption-box {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
}
.slide-caption-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.slide-cat-badge {
    align-self: flex-start;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.slide-title-bold {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
}
.slide-title-bold a {
    color: #000;
}
.slide-title-bold a:hover {
    text-decoration: underline;
}
.slide-desc {
    font-size: 13px;
    color: rgba(0,0,0,0.7);
    line-height: 1.4;
}
.slide-meta-dark {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(0,0,0,0.6);
    font-weight: 600;
}

/* Numerical Navbar */
.slider-num-navbar {
    display: flex;
    background: #11111f;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.num-nav-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    outline: none;
}
.num-nav-btn:last-child {
    border-right: none;
}
.num-nav-btn.active, .num-nav-btn:hover {
    background: var(--primary);
    color: #fff;
}
.all-news-btn {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* Right Slider Styles */
.right-slider {
    position: relative;
    flex: 1;
    height: 400px;
    overflow: hidden;
}
.right-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}
.right-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    pointer-events: all !important;
    display: flex;
    flex-direction: column;
}
.right-slide-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.right-slide-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.right-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}
.right-slide-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.right-slide-body {
    flex: 1;
    padding: 16px;
    display: flex;
    align-items: center;
    background: #11111f;
}
.right-slide-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right Slider Controls */
.right-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #08080f;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.r-ctrl-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.r-ctrl-btn:hover {
    color: var(--primary);
}
.right-slider-dots {
    display: flex;
    gap: 6px;
}
.r-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.r-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive queries */
@media (max-width: 990px) {
    .hero-split-layout {
        flex-direction: column;
    }
    .main-slider-wrap {
        flex: 1;
    }
    .right-manset-wrap {
        flex: 1;
    }
}
@media (max-width: 640px) {
    .slide-inner-flex {
        flex-direction: column;
    }
    .slide-visual {
        flex: 0 0 60%;
    }
    .slide-caption-box {
        flex: 0 0 40%;
        padding: 12px;
    }
    .slide-title-bold {
        font-size: 16px;
    }
}

/* --- SÜR MANŞET (CAROUSEL) --- */
.sur-manset-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 12px 36px;
    overflow: hidden;
}
.sur-manset-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}
.sur-manset-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.sur-item {
    flex: 0 0 calc(25% - 9px); /* Masaüstünde yan yana 4 adet */
    min-width: 200px;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-sizing: border-box;
}
.sur-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}
.sur-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.sur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sur-item:hover .sur-image img {
    transform: scale(1.05);
}
.sur-category {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}
.sur-title {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
}
.sur-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    outline: none;
}
.sur-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.sur-btn.prev {
    left: 6px;
}
.sur-btn.next {
    right: 6px;
}

@media (max-width: 900px) {
    .sur-item {
        flex: 0 0 calc(33.333% - 8px); /* Tablette yan yana 3 adet */
    }
}
@media (max-width: 640px) {
    .sur-item {
        flex: 0 0 calc(50% - 6px); /* Mobilde yan yana 2 adet */
    }
    .sur-manset-container {
        padding: 8px 26px;
    }
}

/* --- AJAX SEARCH RESULTS --- */
.ajax-search-results {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    max-height: 380px;
    overflow-y: auto;
    margin-top: 8px;
    box-sizing: border-box;
}
.ajax-search-item {
    display: flex;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: var(--transition);
    text-align: left;
}
.ajax-search-item:last-child {
    border-bottom: none;
}
.ajax-search-item:hover {
    background: #f8f9fa;
}
.ajax-search-img {
    width: 50px;
    height: 38px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.ajax-search-info {
    flex: 1;
    min-width: 0;
}
.ajax-search-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    display: block;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ajax-search-meta {
    display: flex;
    gap: 10px;
    font-size: 10px;
    color: var(--text-muted);
}
.ajax-search-no-results, .ajax-search-loading {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
.ajax-search-loading i {
    margin-right: 6px;
    color: var(--primary);
}

/* ==========================================================================
   VIDEO MODULE CSS
   ========================================================================== */
.video-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    opacity: 0.85;
}
.video-card:hover .video-card-thumb img {
    transform: scale(1.05);
    opacity: 1;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(229, 57, 53, 0.9); /* YouTube Red-ish */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-left: 4px; /* play icon alignment */
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    z-index: 1;
}
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.video-badge.yt {
    background: #ff0000;
}
.video-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.video-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0 0 10px;
    transition: color 0.2s;
}
.video-card:hover .video-card-title {
    color: var(--primary);
}
.video-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: auto;
}

/* Modern Share Buttons */
.modern-share-container {
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.modern-share-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modern-share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.m-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.m-share-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}
.m-fb { background: #1877F2; }
.m-tw { background: #000000; }
.m-wa { background: #25D366; }
.m-in { background: #0A66C2; }
.m-tg { background: #229ED9; }
.m-pi { background: #E60023; }
.m-rd { background: #FF4500; }
.m-em { background: #EA4335; }
.m-cp { background: #6c757d; }
