/* ==================== 
   RESET & VARIABLES 
   ==================== */
:root {
    --primary: #0066CC;
    --primary-dark: #004c99;
    --primary-light: #e6f2ff;
    --secondary: #0066CC;
    --text: #1a1a1a;
    --text-light: #666;
    --bg: #f0f4f8;
    --white: #ffffff;
    --border: #d0d7de;
    --success: #00c853;
    --danger: #ff1744;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,102,204,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================== 
   LOADING SCREEN 
   ==================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-container {
    text-align: center;
}

.loader-x {
    font-size: 80px;
    font-weight: 900;
    color: var(--white);
    animation: pulse 1.5s infinite;
    line-height: 1;
}

.loader-text {
    font-size: 14px;
    color: var(--white);
    letter-spacing: 8px;
    margin-top: 10px;
    animation: blink 1s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    margin: 20px auto 0;
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--white);
    animation: load 2s ease-in-out infinite;
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes load {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==================== 
   HEADER 
   ==================== */
.main-header {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(0,102,204,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(0,0,0,0.15);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.weather:hover {
    opacity: 1;
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 6px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* Menü açıkken X olması */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== 
   LOGO - MAVİ ZEMİN ÜZERİNE BEYAZ MODERN TASARIM 
   ==================== */
.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 28px;
    font-weight: 900;
    background: var(--white);
    padding: 10px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
    transition: left 0.5s;
}

.logo:hover::before {
    left: 100%;
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.3);
}

.logo-text {
    color: var(--primary);
    letter-spacing: -1px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.logo-dot {
    color: var(--white);
    background: var(--primary);
    padding: 2px 10px;
    border-radius: 8px;
    margin-left: 3px;
    font-size: 0.85em;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(0,102,204,0.4);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.logo:hover .logo-dot {
    transform: rotate(5deg) scale(1.1);
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 5px 15px;
    flex: 0 1 300px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.search-box:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 8px;
    font-size: 14px;
    color: var(--white);
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.search-btn:hover {
    opacity: 1;
}

/* ==================== 
   NAVIGATION - DÜZELTİLMİŞ MOBİL MENÜ
   ==================== */
.main-nav {
    background: var(--primary-dark);
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    padding: 16px 22px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--white);
}

/* Mobil Menü Düzeltmeleri */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0,0,0,0.3);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 80px 0 20px 0;
    }
    
    .nav-list a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255,255,255,0.15);
        border-bottom-color: transparent;
        border-left: 4px solid var(--white);
        padding-left: 21px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .search-box {
        display: none;
    }
}

/* Overlay - Menü dışına tıklayınca kapanma */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* ==================== 
   BREAKING NEWS 
   ==================== */
.breaking-news {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.breaking-news::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    animation: shine 10s infinite;
}

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

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.breaking-label {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: pulse-label 2s infinite;
}

@keyframes pulse-label {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker-content a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    transition: opacity 0.3s;
    position: relative;
}

.ticker-content a:hover {
    opacity: 1;
    text-decoration: underline;
}

.ticker-content a::before {
    content: '•';
    margin-right: 8px;
    opacity: 0.7;
}

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

/* ==================== 
   HERO SLIDER 
   ==================== */
.hero-slider {
    padding: 25px 0;
    background: var(--white);
}

.slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

.slide {
    min-width: 100%;
    position: relative;
    height: 450px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.3s;
}

.slide:hover .slide-content {
    transform: translateY(-5px);
}

.slide-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.4);
}

.slide-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-date {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.dot:hover {
    background: rgba(255,255,255,0.7);
}

.dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
    border-color: var(--primary);
}

/* ==================== 
   ECONOMY BAR 
   ==================== */
.economy-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-top: -1px;
}

.economy-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.economy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    background: var(--bg);
    min-width: 120px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.economy-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--border);
}

.economy-item.up {
    border-left: 4px solid var(--success);
    background: linear-gradient(135deg, #f0fff4 0%, var(--bg) 100%);
}

.economy-item.down {
    border-left: 4px solid var(--danger);
    background: linear-gradient(135deg, #fff0f3 0%, var(--bg) 100%);
}

.eco-name {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.eco-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
}

.eco-change {
    font-size: 13px;
    font-weight: 700;
}

.economy-item.up .eco-change { color: var(--success); }
.economy-item.down .eco-change { color: var(--danger); }

/* ==================== 
   AD CONTAINERS 
   ==================== */
.ad-container {
    background: var(--white);
    padding: 25px;
    text-align: center;
    margin: 25px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.top-ad {
    margin-top: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
}

.sidebar-ad {
    margin: 0 0 25px 0;
    border-radius: 12px;
    background: var(--white);
}

/* ==================== 
   MAIN CONTENT 
   ==================== */
.main-content {
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 35px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

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

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 320px;
}

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

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

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text);
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-card.featured .news-title {
    font-size: 24px;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Load More */
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 16px 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.4);
}

/* ==================== 
   SIDEBAR 
   ==================== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.widget:hover {
    transform: translateY(-3px);
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    padding-bottom: 18px;
    border-bottom: 3px solid var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

/* Popular List */
.popular-list {
    list-style: none;
    counter-reset: popular-counter;
}

.popular-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s;
}

.popular-list li:hover {
    background: var(--bg);
    margin: 0 -25px;
    padding-left: 25px;
    padding-right: 25px;
}

.popular-list li:last-child {
    border-bottom: none;
}

.popular-number {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.popular-list li:hover .popular-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.popular-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s;
}

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

/* Video Widget */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.video-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s;
}

.video-item:hover {
    background: var(--bg);
}

.video-thumb {
    width: 110px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.video-item:hover .video-thumb img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(0,102,204,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.video-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color 0.3s;
}

.video-item:hover .video-title {
    color: var(--primary);
}

/* ==================== 
   FOOTER 
   ==================== */
.main-footer {
    background: linear-gradient(135deg, #0a1628 0%, #1a1a1a 100%);
    color: var(--white);
    margin-top: 60px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a::before {
    content: '›';
    color: var(--primary);
    font-weight: 900;
    opacity: 0;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn.facebook { background: rgba(59,89,152,0.2); border-color: rgba(59,89,152,0.5); }
.social-btn.twitter { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.2); }
.social-btn.instagram { background: linear-gradient(45deg, rgba(225,48,108,0.2), rgba(88,81,219,0.2)); border-color: rgba(225,48,108,0.5); }
.social-btn.youtube { background: rgba(255,0,0,0.2); border-color: rgba(255,0,0,0.5); }

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: var(--primary);
    border-color: var(--primary);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    background: rgba(0,0,0,0.2);
}

/* ==================== 
   RESPONSIVE 
   ==================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .slide {
        height: 350px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .economy-items {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .economy-item {
        min-width: 140px;
    }
    
    /* Mobil için logo ayarlaması */
    .logo {
        padding: 8px 18px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    /* Küçük mobil için logo */
    .logo {
        padding: 6px 14px;
        font-size: 20px;
    }
    
    .slider-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ==================== 
   HABER KART TIKLAMA 
   ==================== */
.news-card,
.slide {
    cursor: pointer !important;
}

/* ==================== 
   404 HATASI ÇÖZÜMÜ - LİNKLER 
   ==================== */
.nav-list a[href^="./haberler/"] {
    pointer-events: auto;
}

/* ==================== 
   SCROLLBAR TASARIMI
   ==================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


