/* ============================================
   HABERSİTESİ9 - ANA CSS DOSYASI
   ============================================ */

:root {
    --color-primary: #0b78e6;
    --color-secondary: #23c9ca;
    --color-primary-dark: #0960b8;
    --color-secondary-dark: #1ba8a9;
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Header */
.main-header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-bottom: 2px solid var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.logo:hover {
    opacity: 0.9;
}

.logo:active {
    opacity: 0.8;
}

.logo-image {
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.logo p {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* Navigation */
.main-nav {
    background: var(--color-primary);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(11,120,230,0.3);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Hamburger Menü Butonu */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.nav-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    color: white;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s;
}

.nav-menu li a:hover {
    background: var(--color-secondary);
    color: #fff;
}

.nav-menu li a:hover::after {
    width: 80%;
}

.nav-icon {
    font-size: 14px;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
}

/* Navigation Arama Kutusu */
.nav-search-box {
    position: relative;
    flex-shrink: 0;
}

.nav-search-box form {
    display: flex;
    align-items: center;
}

.nav-search-input {
    width: 180px;
    padding: 8px 40px 8px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}

.nav-search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.nav-search-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    width: 220px;
}

.nav-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   TOP BAR - SON DAKİKA & DÖVİZ
   ============================================ */

.top-bar {
    background: var(--color-primary-dark);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Son Dakika Haberleri - Modern Tasarım */
.breaking-news-bar-modern {
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breaking-label-modern {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.breaking-label-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.breaking-badge-modern {
    font-size: 16px;
    animation: pulse-fire 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.8));
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.breaking-text-modern {
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breaking-container-modern {
    flex: 1;
    position: relative;
    height: 50px;
    overflow: hidden;
    padding: 0 20px;
}

.breaking-news-item-modern {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.breaking-news-item-modern.active {
    display: flex;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    animation: slideInBreaking 0.5s ease-out;
}

@keyframes slideInBreaking {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.breaking-pulse-modern {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(35, 201, 202, 0.8);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(35, 201, 202, 0.8);
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(35, 201, 202, 1);
    }
}

.breaking-content-modern {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breaking-news-item-modern:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.breaking-news-item-modern:hover .breaking-pulse-modern {
    background: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}


/* Market Ticker Vertical - Tek Sütun, Alttan Yukarı Animasyon */
.market-ticker-vertical {
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
    width: 140px;
    height: 50px;
    overflow: hidden;
    position: relative;
}

.market-ticker-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.market-ticker-scroll {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: scrollUpVertical 15s linear infinite;
    will-change: transform;
}

.market-ticker-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollUpVertical {
    0% {
        transform: translateY(0);
    }
    100% {
    transform: translateY(-50%);
    }
}

.market-item-vertical {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    min-height: 50px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.market-item-vertical:last-child {
    border-bottom: none;
}

.market-item-vertical:hover {
    background: rgba(255, 255, 255, 0.1);
}

.market-item-vertical.crypto {
    opacity: 0.9;
}

.market-label-vertical {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.market-value-vertical {
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: -0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex: 1;
    text-align: right;
}

.market-change-vertical {
    font-size: 9px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.market-change-vertical.up {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.2);
}

.market-change-vertical.down {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.2);
}

.market-item-vertical:hover .market-change-vertical {
    transform: scale(1.15);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    padding: 20px 0;
    min-height: 60vh;
}

/* Gündem Cards Section */
.gundem-cards-section {
    margin-bottom: 30px;
}

.gundem-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.gundem-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gundem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.gundem-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.gundem-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.gundem-card-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gundem-card-content h3 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gundem-card-time {
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

/* Modern Slider Section */
.modern-slider-section {
    margin: 30px 0;
}

.modern-slider-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    position: relative;
}

.slider-main {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.slider-main-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.slider-main-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider-main-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.slider-main-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slider-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-main-item.active .slider-main-image img {
    transform: scale(1.05);
}

.slider-main-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    font-size: 72px;
    color: rgba(255,255,255,0.3);
}

.slider-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 25px 20px 20px;
    color: white;
}

.slider-category-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.slider-main-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.slider-main-summary {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-main-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    opacity: 0.9;
}

.slider-time,
.slider-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.slider-nav-btn {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-nav-btn:hover {
    background: rgba(0,0,0,0.8);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

/* Slider Thumbnails */
.slider-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.slider-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.slider-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slider-thumbnails::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.slider-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.thumbnails-scroll {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumbnail-card {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.thumbnail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-color: var(--color-primary);
}

.thumbnail-card.active {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(35,201,202,0.25);
    background: #f9f9f9;
}

.thumbnail-card.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-secondary);
}

.thumbnail-image {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.thumbnail-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: rgba(255,255,255,0.3);
}

.thumbnail-content {
    flex: 1;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thumbnail-content h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thumbnail-card.active .thumbnail-content h4 {
    color: var(--color-secondary-dark);
    font-weight: 700;
}

.thumbnail-time {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
}

/* Tabbed News Section */
.tabbed-news-section {
    margin: 50px 0;
}

.news-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.news-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    position: relative;
}

.news-tab:hover {
    color: var(--color-secondary-dark);
}

.news-tab.active {
    color: var(--color-secondary-dark);
    border-bottom-color: var(--color-secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tab-main-news {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tab-main-news a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tab-main-news img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.tab-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
}

.tab-main-content h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tab-main-content p {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.95;
}

.tab-side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-small-item {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.tab-small-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tab-small-item a {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

.tab-small-image {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 6px;
}

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

.tab-small-item h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tab-small-item:hover h3 {
    color: var(--color-secondary-dark);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Category News Section */
.category-news-section {
    margin-bottom: 30px;
}

.category-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary);
}

.category-header-bar h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary-dark);
    margin: 0;
}

.view-all-btn {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.view-all-btn:hover {
    color: var(--color-secondary-dark);
}

/* News Grid 3 */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Stabil Kategori Kart Yapısı - Geniş Ekran İçin */
.category-news-section-stable {
    margin-bottom: 35px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.category-header-stable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary);
}

.category-icon-wrapper-stable {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon-stable {
    font-size: 20px;
    line-height: 1;
}

.category-header-stable h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.view-all-btn-stable {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--color-secondary);
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.view-all-btn-stable:hover {
    background: var(--color-secondary);
    color: #fff;
}

.news-grid-stable {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.news-card-stable {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.news-card-stable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}

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

.news-card-image-stable {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

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

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

.news-card-image-stable.no-image-stable {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: rgba(255,255,255,0.2);
}

.news-card-content-stable {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-card-content-stable h3 {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-card-stable:hover .news-card-content-stable h3 {
    color: var(--color-secondary-dark);
}

.news-card-meta-stable {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
}

.news-card-time-stable {
    font-size: 10px;
    color: #999;
    font-weight: 500;
}

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

.news-card-link-alt {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card-image-alt {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.news-card-alt.featured-card .news-card-image-alt {
    width: 50%;
    height: 100%;
    min-height: 300px;
}

.news-card-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-alt:hover .news-card-image-alt img {
    transform: scale(1.15);
}

.news-card-overlay-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card-alt:hover .news-card-overlay-alt {
    opacity: 1;
}

.news-card-image-alt.no-image-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: rgba(255,255,255,0.2);
}

.news-card-content-alt {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card-alt.featured-card .news-card-content-alt {
    width: 50%;
    padding: 30px;
    justify-content: center;
}

.news-card-badge-alt {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    align-self: flex-start;
}

.news-card-content-alt h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-card-alt.featured-card .news-card-content-alt h3 {
    font-size: 18px;
    -webkit-line-clamp: 4;
}

.news-card-alt:hover .news-card-content-alt h3 {
    color: var(--color-primary);
}

.news-card-meta-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.news-card-time-alt {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.news-card-read-more-alt {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.news-card-alt:hover .news-card-read-more-alt {
    opacity: 1;
    transform: translateX(0);
}

.grid-news-item {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.grid-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: var(--color-primary);
}

.grid-news-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.grid-news-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.grid-news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.grid-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-news-item:hover .grid-news-image img {
    transform: scale(1.1);
}

.grid-news-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: rgba(255,255,255,0.3);
}

.grid-news-content {
    padding: 12px;
}

.grid-news-content h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-news-item:hover .grid-news-content h3 {
    color: var(--color-primary);
}

.grid-news-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-news-time {
    font-size: 12px;
    color: #999;
}

/* Latest News Grid 4 */
.latest-news-grid-section {
    margin: 35px 0;
}

.latest-news-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.latest-news-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.latest-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.latest-news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.latest-news-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.latest-news-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: #f0f0f0;
}

.latest-news-card-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-news-card-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.latest-news-card:hover .latest-news-card-content h3 {
    color: var(--color-primary);
}

.latest-news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-size: 12px;
}

.latest-news-card-time {
    color: #999;
}

.latest-news-card-category {
    color: #666;
    font-weight: 500;
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 11px;
}

/* Widget */
.widget {
    background: var(--color-primary-dark);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Rates Widget */
.rates-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-name {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Popular News */
.popular-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
}

.popular-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.2);
}

.popular-number {
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-content h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item:hover .popular-content h4 {
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--color-primary-dark);
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 3px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo-image {
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.footer-tagline {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

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

.social-icon.facebook {
    background: var(--color-primary);
}

.social-icon.twitter {
    background: var(--color-primary);
}

.social-icon.instagram {
    background: var(--color-secondary);
}

.social-icon.linkedin {
    background: var(--color-primary);
}

.social-icon.youtube {
    background: var(--color-primary);
}

.social-icon.pinterest {
    background: var(--color-secondary);
}

.social-icon.whatsapp {
    background: var(--color-secondary-dark);
}

.social-icon:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-news a {
    color: #ccc;
    font-size: 13px;
    transition: all 0.3s;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-news a:hover {
    color: #fff;
    padding-left: 8px;
    font-weight: 500;
}

.footer-news {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-news li {
    padding: 5px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    align-content: flex-start;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #3a3a3a;
    color: #b0b0b0;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #444;
}

.tag:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(11,120,230,0.2);
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0;
    color: #888;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    color: var(--color-secondary-dark);
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-top span {
    line-height: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .market-ticker-vertical {
        width: 130px;
    }
    
    .news-grid-stable {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1600px) {
    .news-grid-stable {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .latest-news-grid-4 {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .gundem-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .latest-news-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .modern-slider-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 15px;
    }
    
    .slider-main {
        height: 450px;
    }
    
    .slider-main-title {
        font-size: 24px;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .market-ticker-vertical {
        width: 120px;
        padding-left: 15px;
    }
    
    .news-grid-stable {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .news-grid-alt {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card-alt.featured-card {
        grid-column: 1 / -1;
        flex-direction: column;
    }
    
    .news-card-alt.featured-card .news-card-image-alt {
        width: 100%;
        height: 300px;
    }

    .news-card-alt.featured-card .news-card-content-alt {
        width: 100%;
    }
    
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .gundem-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .latest-news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .latest-news-card-image {
        height: 160px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        order: -1;
        margin-bottom: 40px;
    }
    
    .news-grid-stable {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .news-card-alt.featured-card {
        grid-column: 1;
        flex-direction: column;
    }
    
    .news-card-alt.featured-card .news-card-image-alt {
        width: 100%;
        height: 250px;
    }

    .news-card-alt.featured-card .news-card-content-alt {
        width: 100%;
        padding: 20px;
    }
    
    .category-news-section-stable {
        padding: 15px;
    }
    
    .category-news-section-alt {
        padding: 20px;
    }
    
    .category-header-stable {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .category-header-alt {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .view-all-btn-stable {
        width: 100%;
        text-align: center;
    }
    
    .view-all-btn-alt {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .modern-slider-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .slider-main {
        height: 400px;
        min-height: 400px;
    }
    
    .slider-main-item {
    height: 100%;
    }
    
    .slider-thumbnails {
        max-height: none;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 5px;
    }
    
    .slider-thumbnails::-webkit-scrollbar {
        height: 4px;
    }
    
    .thumbnails-scroll {
        flex-direction: row;
        gap: 12px;
        min-width: max-content;
    }
    
    .thumbnail-card {
        min-width: 280px;
        flex-shrink: 0;
    }
    
    .tab-news-layout {
        grid-template-columns: 1fr;
    }
    
    .tab-main-news img {
        height: 300px;
    }
    
    .market-ticker-vertical {
        width: 110px;
        padding-left: 12px;
        margin-left: 15px;
    }
    
    .breaking-news-bar-modern {
        flex-wrap: wrap;
    }
    
    .breaking-container-modern {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .header-content {
        padding: 10px 0;
        justify-content: center;
    }
    
    .main-nav {
        padding: 0;
    }
    
    .nav-wrapper {
        flex-direction: row;
        gap: 15px;
        padding: 10px 0;
        justify-content: space-between;
    }
    
    /* Hamburger Menü Butonu Göster */
    .hamburger-menu-btn {
        display: flex;
        order: 1;
    }
    
    /* Menüyü Mobilde Gizle */
    .nav-menu {
        display: none;
    position: absolute;
        top: 100%;
    left: 0;
    right: 0;
        background: var(--color-primary);
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1000;
        padding: 0;
        margin: 0;
        gap: 0;
    }
    
    /* Menü Açıkken */
    .nav-menu.menu-open {
        display: flex;
        max-height: 500px;
        padding: 10px 0;
        background: var(--color-primary);
    }
    
    .nav-menu li {
        width: 100%;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        font-size: 14px;
        width: 100%;
    display: flex;
        justify-content: flex-start;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li:not(:last-child)::after {
        display: none;
    }
    
    .nav-search-box {
        width: auto;
        flex: 1;
        margin-top: 0;
        order: 2;
        max-width: 200px;
    }
    
    .nav-search-input {
        width: 100% !important;
        font-size: 12px;
    }
    
    .nav-search-input:focus {
        width: 100% !important;
    }
    
    .top-bar {
        padding: 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0;
    }
    
    .breaking-news-bar-modern {
        width: 100%;
        flex-direction: column;
        height: auto;
        min-height: auto;
        border-radius: 0;
    }
    
    .breaking-label-modern {
        padding: 10px 15px;
        font-size: 10px;
        width: 100%;
    justify-content: center;
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255,0.2);
    }
    
    .breaking-container-modern {
        height: 40px;
        padding: 0 10px;
        width: 100%;
    }
    
    .breaking-news-item-modern {
        font-size: 12px;
        padding: 0 10px;
    }
    
    
    .market-ticker-vertical {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 8px;
    }
    
    .market-item-vertical {
        padding: 5px 10px;
        min-height: 40px;
    }
    
    .market-label-vertical {
        font-size: 9px;
    }
    
    .market-value-vertical {
        font-size: 10px;
    }
    
    .market-change-vertical {
        width: 12px;
        height: 12px;
        font-size: 8px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .gundem-cards-section {
        margin-bottom: 20px;
    }
    
    .gundem-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gundem-card-image {
        height: 200px;
    }
    
    .gundem-card-content h3 {
        font-size: 15px;
    }
    
    .news-grid-stable {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card-image-stable {
        height: 100px;
    }
    
    .news-card-content-stable h3 {
        font-size: 10px;
    }
    
    .news-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .news-card-alt.featured-card {
        grid-column: 1;
        flex-direction: column;
    }
    
    .news-card-alt.featured-card .news-card-image-alt {
        width: 100%;
        height: 220px;
    }
    
    .news-card-alt.featured-card .news-card-content-alt {
        width: 100%;
        padding: 15px;
    }
    
    .news-card-alt.featured-card .news-card-content-alt h3 {
        font-size: 18px;
    }
    
    .category-news-section-stable {
        padding: 12px;
    }
    
    .category-header-stable h2 {
        font-size: 14px;
    }
    
    .category-news-section-alt {
        padding: 15px;
    }
    
    .category-header-alt h2 {
        font-size: 20px;
    }
    
    .category-icon-alt {
        font-size: 24px;
    }
    
    .news-card-image-alt {
        height: 180px;
    }
    
    .news-card-content-alt h3 {
        font-size: 16px;
    }
    
    .modern-slider-section {
        margin: 30px 0;
    }
    
    .slider-main {
        height: 300px;
    }
    
    .slider-main-content {
        padding: 25px 20px 20px;
    }
    
    .slider-main-title {
        font-size: 18px;
    }
    
    .slider-main-summary {
    font-size: 12px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .slider-thumbnails {
        max-height: none;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 5px;
    }
    
    .slider-thumbnails::-webkit-scrollbar {
        height: 4px;
    }
    
    .thumbnails-scroll {
        flex-direction: row;
        gap: 10px;
        min-width: max-content;
    }
    
    .thumbnail-card {
        min-width: 250px;
        flex-shrink: 0;
    }
    
    .thumbnail-image {
        width: 100px;
        height: 75px;
    }
    
    .thumbnail-content h4 {
        font-size: 13px;
    }
    
    .tabbed-news-section {
        margin: 30px 0;
    }
    
    .news-tabs {
        gap: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .news-tab {
        padding: 10px 15px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .tab-news-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tab-main-news img {
        height: 250px;
    }
    
    .tab-small-item {
        gap: 10px;
    }
    
    .tab-small-item a {
        padding: 10px;
    }
    
    .tab-small-image {
        width: 100px;
        height: 70px;
    }
    
    .tab-small-item h3 {
        font-size: 13px;
    }
    
    .latest-news-grid-section {
        margin: 30px 0;
    }
    
    .latest-news-grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .latest-news-card-image {
        height: 200px;
    }
    
    .latest-news-card-content h3 {
        font-size: 15px;
    }
    
    .content-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .main-column {
        gap: 30px;
    }
    
    .sidebar {
        gap: 20px;
    }
    
    .category-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-header-bar h2 {
        font-size: 20px;
    }
    
    .news-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-news-image {
        height: 180px;
    }
    
    .grid-news-content h3 {
        font-size: 15px;
    }
    
    .widget {
        padding: 15px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .popular-item {
        padding: 10px;
    }
    
    .popular-content h4 {
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col {
        gap: 12px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
.news-detail {
        padding: 20px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-slider-container {
        height: 300px;
    }
    
    .cat-slide-overlay {
        padding: 20px 15px;
    }
    
    .cat-slide-overlay h2 {
        font-size: 18px;
    }
    
    .page-content {
        padding: 25px;
    }
    
    .page-content h1 {
        font-size: 24px;
    }
    
    .page-content h2 {
        font-size: 20px;
    }
    
    .news-list-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .news-list-image {
        width: 100%;
        height: 200px;
    }
    
    .news-grid-stable {
        grid-template-columns: 1fr;
    }
    
    .news-card-image-stable {
        height: 90px;
    }
    
    .news-card-content-stable {
        padding: 8px;
    }
    
    .news-card-content-stable h3 {
        font-size: 10px;
    }
    
    .category-news-section-stable {
        padding: 10px;
    }
    
    .category-header-stable h2 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .nav-menu li a {
        padding: 10px 10px;
        font-size: 10px;
    }
    
    .breaking-label-modern {
        font-size: 9px;
        padding: 8px 12px;
    }
    
    .breaking-news-item-modern {
        font-size: 11px;
    }
    
    .market-ticker-vertical {
        height: 35px;
    }
    
    .market-item-vertical {
        min-height: 35px;
        padding: 4px 8px;
    }
    
    .market-label-vertical {
        font-size: 8px;
    }
    
    .market-value-vertical {
        font-size: 9px;
    }
    
    .slider-main {
        height: 250px;
    }
    
    .slider-main-title {
        font-size: 16px;
    }
    
    .slider-main-summary {
        font-size: 11px;
    }
    
    .gundem-card-image {
        height: 180px;
    }
    
    .latest-news-card-image {
        height: 180px;
    }
    
    .grid-news-image {
        height: 160px;
    }
    
    .category-slider-container {
        height: 250px;
    }
    
    .cat-slide-overlay h2 {
        font-size: 16px;
    }
}

/* ============================================
   PAGE CONTENT (Hakkımızda, İletişim, Künye)
   ============================================ */

.page-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.page-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-content a:hover {
    color: #333;
}

.page-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-text a:hover {
    color: #333;
}

.news-source {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #999;
}

.news-source a {
    color: var(--color-primary);
    text-decoration: underline;
}

.news-source a:hover {
    color: #333;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   NEWS DETAIL PAGE (haber.php)
   ============================================ */

.news-detail {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: #999;
}

.news-detail-category {
    margin-bottom: 15px;
}

.news-detail-category a {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.news-detail-category a:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.news-detail-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.news-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

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

.news-detail-image {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.news-detail-summary {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.news-detail-summary strong {
    color: var(--color-primary);
    font-weight: 600;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-weight: 700;
}

.news-detail-content h2 {
    font-size: 24px;
}

.news-detail-content h3 {
    font-size: 20px;
}

.news-detail-content h4 {
    font-size: 18px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-detail-content li {
    margin-bottom: 10px;
}

.news-detail-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.news-detail-content a:hover {
    color: #333;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 30px 0;
}

.share-buttons strong {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.twitter {
    background: var(--color-primary);
}

.share-btn.facebook {
    background: var(--color-secondary);
}

.share-btn.whatsapp {
    background: var(--color-primary-dark);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Related News */
.related-news {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--color-primary);
}

.related-news h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-secondary-dark);
    margin-bottom: 25px;
}

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

.related-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item:hover .related-content h3 {
    color: var(--color-secondary-dark);
}

.news-time {
    font-size: 12px;
    color: #999;
}

/* Latest News Sidebar */
.latest-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.1);
}

.sidebar-news-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.2);
}

.sidebar-news-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-news-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-news-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-item:hover h4 {
    color: #fff;
}

/* ============================================
   CATEGORY PAGE (kategori.php)
   ============================================ */

.category-slider-section {
    margin: 40px 0;
}

.category-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.category-slider-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}

.category-slider-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.category-slider {
    position: relative;
    margin-bottom: 40px;
}

.cat-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cat-slider-nav:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.cat-slider-nav.prev {
    left: 15px;
}

.cat-slider-nav.next {
    right: 15px;
}

.cat-slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cat-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.cat-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.cat-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.cat-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-slide-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cat-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-slide-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255,255,255,0.3);
}

.cat-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 40px 30px 30px;
    color: white;
}

.cat-slide-overlay h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.cat-slide-time {
    font-size: 13px;
    opacity: 0.9;
}

.cat-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cat-page-dot {
    background: #ddd;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-page-dot:hover {
    background: #999;
    color: white;
}

.cat-page-dot.active {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.cat-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.cat-slider-dot:hover {
    background: #999;
}

.cat-slider-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 18px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.page-btn:hover {
    background: #f0f0f0;
    border-color: var(--color-secondary);
    color: var(--color-secondary-dark);
}

.page-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.pagination-link {
    padding: 10px 18px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-link:hover {
    background: #f0f0f0;
    border-color: var(--color-secondary);
    color: var(--color-secondary-dark);
}

.pagination-link.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Current Topics Widget */
.widget-current-topics {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title-current {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-secondary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.current-topics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.topic-item {
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.topic-item:hover {
    background: #f0f0f0;
    border-left-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(5px);
}

/* ============================================
   SEARCH PAGE (arama.php)
   ============================================ */

.search-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    display: flex;
        gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.news-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-color: var(--color-primary);
}

.news-list-item a {
    display: flex;
    gap: 20px;
        width: 100%;
    text-decoration: none;
    color: inherit;
}

.news-list-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

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

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary);
    margin: 0 0 10px 0;
}

.news-list-item:hover .news-item-content h3 {
    color: #333;
}

.news-item-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   SPONSORED SLIDER (Özel Haberler)
   ============================================ */

.sponsored-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    }
    
    .ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
        width: 40px;
        height: 40px;
    border-radius: 50%;
    cursor: pointer;
        font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
        justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ad-slider-nav:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.ad-slider-nav.prev {
    left: 10px;
}

.ad-slider-nav.next {
    right: 10px;
}

.sponsored-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.sponsored-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.sponsored-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.sponsored-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.sponsored-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsored-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.sponsored-overlay h4 {
        font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
.ad-slider-pagination {
    display: flex;
    justify-content: center;
        gap: 5px;
    margin-top: 15px;
    padding: 0 15px 15px;
        flex-wrap: wrap;
    }
    
.ad-dot {
    background: #ddd;
    border: none;
        width: 28px;
        height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-dot:hover {
    background: #999;
    color: white;
}

.ad-dot.active {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

/* ============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================ */

/* Duplicate responsive styles removed - already included in main @media (max-width: 768px) above */

/* ============================================
   VIDEO & PHOTO GALLERY
   ============================================ */

.video-thumbnail,
.photo-thumbnail {
    position: relative;
        width: 100%;
    height: 100%;
    overflow: hidden;
    }
    
.video-thumbnail img,
.photo-thumbnail img {
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon,
.photo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: all 0.3s;
}

.video-thumbnail:hover .video-play-icon,
.photo-thumbnail:hover .photo-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item,
.photo-item {
    position: relative;
}

.video-item::after,
.photo-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    z-index: 3;
}

.video-item::after {
    content: '▶';
        display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.photo-item::after {
    content: '📷';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ============================================
   SPECIAL PAGES (Namaz, Kripto, Astroloji)
   ============================================ */

.prayer-times-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    color: white;
}

.crypto-header,
.astroloji-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    color: white;
    text-align: center;
}

.crypto-list {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.burc-selection {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.burc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
.burc-item {
        padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
    color: #333;
}

.burc-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

.burc-yorum {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    color: white;
}

.content-section {
    margin: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}
