/* ===== CSS RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

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

:root {
    --primary: #C92E2F;
    --primary-dark: #a82425;
    --primary-light: #e04344;
    --dark: #1a1a2e;
    --dark-bg: #222222;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #f4f4f4;
    --white: #ffffff;
    --border: #e0e0e0;
    --green: #228b21;
    --blue: #2b8ebf;
    --orange: #eb6f13;
    --purple: #6827ad;
    --yellow: #f5a623;
    --crypto-green: #16c784;
    --crypto-red: #ea3943;
    --site-width: 1500px;
    --header-height: 90px;
    --content-ratio: 71%;
    --aside-ratio: 27%;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 6px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP BAR (Financial Ticker) ===== */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    gap: 20px;
}

.top-bar .date-info {
    margin-right: auto;
    color: #aaa;
    font-size: 11px;
}

.top-bar .date-info i {
    margin-right: 4px;
}

.finance-ticker {
    display: flex;
    gap: 18px;
    align-items: center;
}

.finance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap;
}

.finance-item .label {
    color: #ccc;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finance-item .value {
    color: var(--white);
    font-weight: 600;
}

.finance-item .change {
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.finance-item .change.up {
    background: var(--crypto-green);
    color: #fff;
}

.finance-item .change.down {
    background: var(--crypto-red);
    color: #fff;
}

/* ===== HEADER ===== */
.main-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.logo img {
    height: 125px !important;
    max-height: none;
    width: auto;
    margin-left: -30px;
    margin-right: 15px;
}

.logo h1 {
    display: flex;
    align-items: baseline;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.logo .city {
    font-weight: 400;
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand .logo h2 {
    display: flex;
    align-items: baseline;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-brand .logo .city {
    font-weight: 300;
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand .logo .sub {
    font-weight: 300;
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.95);
}

.logo .sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 4px;
    position: relative;
    top: -2px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    flex: 1;
    min-width: 0;
    /* Flexbox taşmasını önler */
    overflow-x: auto;
    /* Yatay scroll açar */
    overflow-y: hidden;
    scrollbar-width: thin;
    /* Firefox için ince scrollbar */
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

.main-nav::-webkit-scrollbar {
    height: 4px;
    /* Chrome, Safari, Opera için ince scrollbar */
}

.main-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.main-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.main-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 15px 6px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: background var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.main-nav a i {
    font-size: 14px;
}

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

.header-right .weather {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.header-right .weather i {
    font-size: 20px;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

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

/* ===== BREAKING NEWS TICKER ===== */
.breaking-news {
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    height: 38px;
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.breaking-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 0 14px;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.breaking-label .dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.breaking-nav {
    display: flex;
    gap: 2px;
    margin: 0 8px;
    flex-shrink: 0;
}

.breaking-nav button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text);
    border-radius: 3px;
    transition: all var(--transition);
}

.breaking-nav button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.breaking-content {
    flex: 1;
    overflow: hidden;
    margin: 0 12px;
    position: relative;
    height: 100%;
}

.breaking-list {
    position: relative;
    height: 100%;
}

.breaking-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 13px;
    color: var(--text);
    pointer-events: none;
    z-index: 1;
}

.breaking-item.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

.breaking-item .time {
    color: var(--primary);
    font-weight: 600;
    margin-right: 8px;
    font-size: 12px;
    white-space: nowrap;
}

.breaking-item a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

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

.breaking-finance {
    display: flex;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
    padding-left: 15px;
    border-left: 1px solid var(--border);
}

.breaking-finance .fin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    line-height: 1.3;
}

.breaking-finance .fin-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.breaking-finance .fin-value {
    color: var(--text);
    font-weight: 700;
    font-size: 11px;
}

/* ===== MAIN LAYOUT ===== */
.main-content {
    padding: 20px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.content-area {
    min-width: 0;
}

.sidebar {
    min-width: 0;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95) translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateX(0);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.hero-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title a:hover {
    color: var(--primary-light);
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-pagination button {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-family: 'Poppins', sans-serif;
}

.hero-pagination button.active,
.hero-pagination button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--primary);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title i {
    font-size: 20px;
}

.section-title .icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.section-more {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

.section-more:hover {
    color: var(--primary);
}

/* ===== NEWS CARD ===== */
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.news-card .card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    z-index: 2;
}

.news-card .card-body {
    padding: 14px;
}

.news-card .card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

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

.news-card .card-excerpt {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.news-card .card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.news-card .card-meta i {
    margin-right: 3px;
}

/* ===== NEWS GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.news-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ===== KÖŞE YAZARLARI (Columnists) ===== */
.columnists-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.columnists-widget .widget-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.columnists-widget .widget-header .title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.columnists-widget .widget-header .nav-btns {
    display: flex;
    gap: 4px;
}

.columnists-widget .widget-header .nav-btns span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 6px;
    text-transform: uppercase;
}

.columnists-widget .widget-header button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all var(--transition);
}

.columnists-widget .widget-header button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.columnist-item {
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

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

.columnist-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.columnist-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.columnist-name {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
}

.columnist-date {
    font-size: 11px;
    color: var(--primary);
}

.columnist-article-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.columnist-article-title a:hover {
    color: var(--primary);
}

.columnist-excerpt {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== GÜNCEL KONULAR (Trending) ===== */
.trending-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.trending-widget .widget-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.trending-widget .widget-header i {
    font-size: 16px;
}

.trending-list {
    padding: 0;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.trending-item:hover {
    background: #fafafa;
}

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

.trending-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.trending-item:nth-child(n+4) .trending-num {
    background: var(--text-muted);
}

.trending-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

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

/* ===== WHATSAPP BANNER ===== */
.whatsapp-banner {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.whatsapp-icon {
    font-size: 36px;
}

.whatsapp-text h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-text p {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-btn {
    padding: 8px 20px;
    background: var(--white);
    color: #128C7E;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== TAGS DISCOVERY ===== */
.tags-discovery {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.tags-discovery p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: #f5f5f5;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text);
    transition: all var(--transition);
    font-weight: 500;
}

.tag-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tag-item i {
    font-size: 11px;
    color: var(--text-muted);
}

.tag-item:hover i {
    color: var(--white);
}

/* ===== CRYPTO WIDGET ===== */
.crypto-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.crypto-widget .widget-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.crypto-list {
    padding: 0;
}

.crypto-item {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

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

.crypto-symbol {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 90px;
    font-weight: 600;
}

.crypto-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
}

.crypto-price {
    flex: 1;
    text-align: right;
    font-weight: 600;
}

.crypto-change {
    width: 60px;
    text-align: right;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
}

.crypto-change.up {
    background: #e6f9ef;
    color: var(--crypto-green);
}

.crypto-change.down {
    background: #fde8ea;
    color: var(--crypto-red);
}

.crypto-more {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    transition: background var(--transition);
}

.crypto-more:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== FULL WIDTH SECTION ===== */
.full-width-section {
    margin-bottom: 24px;
}

/* ===== VIDEO GALLERY ===== */
.video-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    margin-bottom: 24px;
}

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

.video-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.video-card .video-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

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

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

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

.video-card .video-title {
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

/* ===== SPORTS SECTION ===== */
.sports-section {
    margin-bottom: 24px;
}

.sports-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.sports-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--dark);
}

.sports-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.sports-slide.active {
    opacity: 1;
}

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

.sports-slide .sports-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.sports-slide .sports-title {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.sports-slide .sports-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

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

.sports-news-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.sports-news-item:hover {
    box-shadow: var(--shadow-sm);
}

.sports-news-item .thumb {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.sports-news-item .info h4 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sports-news-item .info .meta {
    font-size: 10px;
    color: var(--text-muted);
}

/* ===== LEAGUE TABLE ===== */
.league-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.league-widget .widget-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.league-widget .widget-header .league-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.league-table {
    width: 100%;
    border-collapse: collapse;
}

.league-table th {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: #fafafa;
}

.league-table th:first-child,
.league-table td:first-child {
    width: 30px;
    text-align: center;
}

.league-table th:nth-child(2),
.league-table td:nth-child(2) {
    text-align: left;
    padding-left: 6px;
}

.league-table td {
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.league-table tr:hover {
    background: #f9f9f9;
}

.league-table .rank {
    font-weight: 700;
    color: var(--primary);
}

.league-table .team-name {
    font-weight: 600;
}

.league-more {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    border-top: 1px solid var(--border);
}

.league-more:hover {
    background: #fafafa;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-brand .logo .sub {
    color: var(--primary);
    font-style: italic;
    font-size: 14px;
}

.footer-brand .copyright {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all var(--transition);
}

.footer-social a.fb {
    background: #3b5998;
}

.footer-social a.tw {
    background: #1da1f2;
}

.footer-social a.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a.yt {
    background: #ff0000;
}

.footer-social a.wp {
    background: #25D366;
}

.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.footer-menu h3 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-menu a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-news h3 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-news-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-news-item a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    line-height: 1.4;
    display: block;
}

.footer-news-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sports-wrapper {
        grid-template-columns: 1fr;
    }

    .breaking-finance {
        display: none;
    }
}

@media (max-width: 768px) {
    /* MOBILE HEADER RE-LAYOUT */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow: hidden; /* Fallback for older browsers */
    }

    .header-inner {
        position: relative !important;
        height: 100px !important;
        min-height: 100px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
    }

    .mobile-menu-toggle {
        position: static !important;
        order: 1;
        transform: none !important;
        margin: 0 !important;
        font-size: 24px !important;
        background: transparent !important;
        color: #fff !important;
        border: none !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        z-index: 100 !important;
        width: 80px !important; /* Match right container width */
        height: 40px !important;
    }

    .logo {
        position: static !important;
        order: 2;
        transform: none !important;
        margin: 0 auto !important;
        height: 100px !important;
        max-height: 100px !important;
        flex: 1 !important; /* Take up remaining space */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 2;
        overflow: visible !important; 
    }

    .logo img {
        width: auto !important;
        height: 96px !important;
        max-height: 96px !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        transform: scale(1.4) !important;
        transform-origin: center center !important;
    }

    .header-right {
        position: static !important;
        order: 3;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 15px !important;
        margin: 0 !important;
        width: 80px !important; /* Match left container width */
    }

    .header-right .weather {
        display: none !important;
    }

    .header-right .header-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
        color: #fff !important;
    }

    /* MOBILE WEATHER CARD */
    .mobile-weather-widget {
        display: block !important;
        padding: 10px 16px;
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        border-bottom: 2px solid var(--primary);
    }

    .mw-card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        background: #fff;
        border-radius: 14px;
        padding: 12px 24px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.04);
        max-width: 320px;
        margin: 0 auto;
    }

    .mw-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary), #ff6b6b);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mw-icon-wrap i {
        font-size: 22px;
        color: #fff;
    }

    .mw-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mw-temp {
        font-size: 22px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .mw-city-select {
        display: flex;
        align-items: center;
    }

    .mw-city-select .custom-dropdown {
        background: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .mw-city-select .dropdown-selected {
        font-size: 13px;
        font-weight: 600;
        color: #888;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mw-city-select .dropdown-selected i {
        font-size: 9px;
        color: #bbb;
    }

    .mw-city-select .dropdown-options {
        min-width: 140px;
    }

    /* main-nav now stays as scrolling menu below the header! */

    .main-nav {
        display: none !important;
    }



    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 16px;
    }

    .finance-ticker {
        display: none;
    }

    .top-bar .date-info {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 22px;
    }

    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .whatsapp-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .d-none-mobile {
        display: none !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Category colors */
.cat-gundem {
    background: var(--primary) !important;
}

.cat-ekonomi {
    background: var(--green) !important;
}

.cat-spor {
    background: var(--blue) !important;
}

.cat-dunya {
    background: var(--purple) !important;
}

.cat-saglik {
    background: var(--orange) !important;
}

.cat-teknoloji {
    background: #e91e63 !important;
}

.cat-kultur {
    background: #9c27b0 !important;
}

/* ===== ARTICLE DETAIL PAGE ===== */
.article-detail {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 24px;
}

.article-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.article-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 500;
    transition: all var(--transition);
}

.share-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: var(--white) !important;
}

.article-image {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    border-radius: var(--radius);
}

.article-summary {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.article-content p {
    margin-bottom: 16px;
}

.article-content h2,
.article-content h3 {
    margin: 24px 0 12px;
    color: var(--dark);
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 16px 0;
}

.article-content blockquote {
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    background: #f8f9fa;
    margin: 16px 0;
    font-style: italic;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Form control for frontend */
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 46, 47, 0.1);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 20px;
    }

    .article-detail {
        padding: 20px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ===== BREADCRUMB ===== */
.page-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 13px;
}

.page-breadcrumb a {
    color: var(--text-muted);
}

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

.page-breadcrumb .sep {
    color: var(--text-muted);
    margin: 0 6px;
}

.page-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* ===== STATIC PAGES ===== */
.static-page {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 24px;
}

.static-page-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--primary);
}

.static-page-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.static-page-header h1 i {
    color: var(--primary);
    margin-right: 8px;
}

.static-page-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.static-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'Poppins', sans-serif;
}

.static-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 8px;
}

.static-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 14px;
}

.static-content ul {
    margin: 12px 0 20px 20px;
    list-style: disc;
}

.static-content ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 6px;
}

.legal-content {
    counter-reset: section;
}

/* ===== PRINCIPLES GRID (Hakkımızda) ===== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.principle-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.principle-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.principle-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.principle-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== KÜNYE ===== */
.kunye-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 32px;
}

.kunye-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.kunye-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.kunye-card h3 {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    border: none;
    padding: 0;
}

.kunye-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.kunye-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.kunye-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.kunye-table tr:hover {
    background: #f8f9fa;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form label i {
    color: var(--primary);
    margin-right: 4px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--text);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 46, 47, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 46, 47, 0.3);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-info-card h3 i {
    margin-right: 6px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--text);
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}

.contact-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 46, 47, 0.3);
    color: var(--white);
}

/* ===== ALERT BOXES ===== */
.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-box.success {
    background: #e6f9ef;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert-box.error {
    background: #fde8ea;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-box i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-box strong {
    display: block;
    margin-bottom: 4px;
}

.alert-box p {
    font-size: 13px;
    margin: 0;
}

/* ===== AD FEATURES (Reklam sayfası) ===== */
.ad-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 32px;
}

.ad-feature {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.ad-feature:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ad-feature i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.ad-feature h3 {
    font-size: 15px;
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.ad-feature p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== 404 ERROR PAGE ===== */
.error-page {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.error-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.error-icon i {
    font-size: 80px;
    color: #e0e0e0;
}

.error-code {
    position: absolute;
    bottom: -10px;
    right: -20px;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 0 var(--white);
}

.error-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.error-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-search {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin: 0 auto 30px;
}

.error-search .form-control {
    flex: 1;
    border-radius: 8px 0 0 8px;
    border: 2px solid var(--border);
    border-right: none;
    padding: 12px 16px;
    font-size: 14px;
}

.error-search .form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.error-search button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition);
}

.error-search button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.error-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.error-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition);
    background: #f0f0f0;
    color: var(--text);
    border: 1px solid var(--border);
}

.error-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text);
}

.error-link-btn.primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.error-link-btn.primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 18px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.cookie-icon {
    font-size: 28px;
    color: var(--yellow);
    flex-shrink: 0;
}

.cookie-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

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

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ===== RESPONSIVE FOR NEW PAGES ===== */
@media (max-width: 1200px) and (min-width: 769px) {
    .logo h1 {
        font-size: 18px;
    }

    .logo .city {
        font-size: 18px;
        margin-right: 4px;
    }

    .logo .sub {
        font-size: 10px;
    }

    .logo {
        margin-right: 15px;
    }

    .main-nav a {
        padding: 8px 6px;
        font-size: 11px;
        gap: 3px;
    }

    .main-nav a i {
        font-size: 12px;
    }

    .header-right {
        gap: 6px;
    }

    .dropdown-selected {
        padding: 2px 6px;
        font-size: 12px;
    }

    #weatherTempValue {
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    /* Hide top menu since there is a bottom menu */
    .main-nav,
    .mobile-menu-toggle {
        display: none;
    }

    /* Top Bar Responsive */
    .top-bar .container {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .top-bar .date-info {
        display: none;
    }

    .finance-ticker {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        padding-bottom: 2px;
        display: flex;
        flex-wrap: nowrap;
    }

    .finance-ticker::-webkit-scrollbar {
        display: none;
    }

    .finance-item {
        flex-shrink: 0;
    }

    /* Breaking News Responsive */
    .breaking-news {
        height: auto;
        padding: 5px 0;
    }

    .breaking-news .container {
        flex-wrap: wrap;
        gap: 8px;
    }

    .breaking-label {
        height: 28px;
        font-size: 10px;
        padding: 0 8px;
    }

    .breaking-nav {
        margin: 0 4px;
    }

    .breaking-content {
        height: 28px;
        flex: 1;
        min-width: 120px;
    }

    .breaking-item {
        font-size: 11px;
    }

    .breaking-finance {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .breaking-finance::-webkit-scrollbar {
        display: none;
    }

    .breaking-finance .fin-item {
        flex-shrink: 0;
    }

    /* Existing Static Page Responsive */
    .static-page {
        padding: 24px 16px;
    }

    .static-page-header h1 {
        font-size: 22px;
    }

    .principles-grid,
    .kunye-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .ad-features {
        grid-template-columns: 1fr;
    }

    .error-links {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    margin-right: 8px;
    z-index: 100;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.dropdown-selected:hover {
    background: rgba(255, 255, 255, 0.25);
}

.dropdown-selected i {
    font-size: 11px;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    color: #333;
    list-style: none;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    margin-top: 8px;
    padding: 0;
    text-align: left;
}

.dropdown-options.show {
    display: flex;
    animation: fadeInDown 0.2s ease;
}

.dropdown-options li {
    padding: 8px 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-options li:hover {
    background: #f0f0f0;
    color: var(--primary);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    /* Header layout is handled by 768px grid layout */


    .custom-dropdown {
        margin-right: 0;
    }

    .dropdown-selected {
        padding: 2px 4px;
        font-size: 11px;
    }

    .dropdown-selected i {
        font-size: 9px;
    }

    #weatherTempValue {
        font-size: 11px;
    }

    .header-icon-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        margin-right: 4px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .weather {
        gap: 2px;
    }
}

.sports-arrow:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    color: var(--primary) !important;
}

/* ===== DARK MODE ===== */
:root.dark-mode {
    --bg: #121212;
    --white: #1e1e1e;
    --text: #e0e0e0;
    --text-light: #aaaaaa;
    --text-muted: #888888;
    --border: #333333;
}

:root.dark-mode body {
    background-color: var(--bg);
    color: var(--text);
}

:root.dark-mode .card,
:root.dark-mode .news-card,
:root.dark-mode .widget-header,
:root.dark-mode .columnist-item,
:root.dark-mode .author-card,
:root.dark-mode .popular-item,
:root.dark-mode .cookie-banner,
:root.dark-mode .article-content,
:root.dark-mode .comments-section,
:root.dark-mode .tags-discovery,
:root.dark-mode .contact-form-wrapper,
:root.dark-mode .contact-info-card,
:root.dark-mode .alert-box,
:root.dark-mode .weather-dropdown {
    background-color: var(--white);
    color: var(--text);
    border-color: var(--border);
}

:root.dark-mode .article-summary,
:root.dark-mode .article-content blockquote {
    background: #1e1e1e;
    color: var(--text);
}

:root.dark-mode .article-title {
    color: #fff;
}

:root.dark-mode .logo h1,
:root.dark-mode .logo h2,
:root.dark-mode .logo a {
    color: #ffffff !important;
    text-decoration: none;
}

:root.dark-mode .logo .sub {
    color: #e0e0e0 !important;
}

:root.dark-mode .top-bar {
    background: #0a0a0a;
    border-bottom: 1px solid #222;
}

:root.dark-mode .top-bar .date-info {
    color: #e0e0e0;
}

:root.dark-mode .finance-item .label {
    color: #aaaaaa;
}

:root.dark-mode .finance-item .value {
    color: #ffffff;
}

:root.dark-mode .main-header {
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
}

:root.dark-mode .breaking-news {
    background: #1a1a1a;
    border-color: var(--border);
}

:root.dark-mode .breaking-label {
    color: #ffffff !important;
}

:root.dark-mode .breaking-finance .fin-item .fin-label {
    color: #aaaaaa;
}

:root.dark-mode .breaking-finance .fin-item .fin-value {
    color: #ffffff;
}

:root.dark-mode .breaking-nav button {
    background: #333;
    color: #fff;
}

:root.dark-mode .breaking-item {
    color: var(--text);
}

:root.dark-mode .breaking-item a {
    color: var(--text);
}

:root.dark-mode .hero-item {
    background: #1e1e1e;
}

:root.dark-mode .section-title {
    color: #fff;
}

:root.dark-mode .header-icon-btn,
:root.dark-mode .mobile-menu-toggle {
    background: #2a2a2a;
    color: #e0e0e0;
}

:root.dark-mode .crypto-row {
    border-bottom-color: var(--border);
}

:root.dark-mode .crypto-row:hover {
    background: #2a2a2a;
}

:root.dark-mode input,
:root.dark-mode textarea,
:root.dark-mode select {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #444;
}

:root.dark-mode .footer-bottom {
    background: #000;
}

:root.dark-mode .search-input {
    background: #2a2a2a;
    color: #fff;
}

:root.dark-mode a {
    color: #e0e0e0;
}

:root.dark-mode .card-title a,
:root.dark-mode .popular-title a {
    color: #fff;
}

:root.dark-mode .breaking-label {
    color: #ffffff !important;
}

:root.dark-mode .tag-item {
    background: #2a2a2a;
    color: #fff;
    border-color: #444;
}

:root.dark-mode .main-nav ul li a {
    color: #e0e0e0;
}

:root.dark-mode .main-nav ul li a:hover {
    color: var(--primary);
}

:root.dark-mode .hero-title {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

:root.dark-mode .breaking-item a {
    color: #ffffff !important;
}

:root.dark-mode .breaking-item {
    color: #ffffff !important;
}

:root.dark-mode .whatsapp-content {
    color: #fff;
}

:root.dark-mode .whatsapp-banner {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* --- Inline Style Override Fixes --- */
/* Hava Durumu */
:root.dark-mode .weather {
    color: #e0e0e0;
}

:root.dark-mode #weatherCitySelect {
    background: #333;
    color: #fff;
    border-color: #444;
}

:root.dark-mode .weather-settings-btn {
    color: #e0e0e0;
}

/* Namaz Vakitleri */
:root.dark-mode .pray-widget {
    background: #1e1e1e !important;
    box-shadow: none !important;
}

:root.dark-mode .pray-widget li {
    border-bottom-color: #333 !important;
}

:root.dark-mode .pray-widget span,
:root.dark-mode .pray-widget strong {
    color: #e0e0e0 !important;
}

/* Öne Çıkanlar (Sidebar Slider) */
:root.dark-mode .sidebar-news-slider .widget-header {
    background: #1e1e1e !important;
    color: #ffffff !important;
    border-bottom-color: var(--primary) !important;
}

/* Nöbetçi Eczaneler */
:root.dark-mode .pharmacy-horizontal {
    background: #1e1e1e !important;
    box-shadow: none !important;
    border-top-color: var(--primary-dark) !important;
}

:root.dark-mode .pharmacy-horizontal h3 {
    color: #ffffff !important;
}

:root.dark-mode .pharmacy-horizontal .widget-header {
    border-bottom-color: #333 !important;
}

:root.dark-mode .pharmacy-item {
    background: #2a2a2a !important;
    border-color: #333 !important;
}

:root.dark-mode .pharmacy-item span {
    background: #444 !important;
    color: #e0e0e0 !important;
}

:root.dark-mode .pharmacy-item div {
    color: #cccccc !important;
}

:root.dark-mode .pharmacy-item strong {
    color: var(--primary-light) !important;
}

/* Kripto & Puan Durumu (Ek Cila) */
:root.dark-mode .crypto-more,
:root.dark-mode .league-more {
    background: #2a2a2a;
    color: #fff;
    border-top: 1px solid #333;
}

:root.dark-mode .crypto-more:hover,
:root.dark-mode .league-more:hover {
    background: var(--primary-dark);
}

/* Alt Bilgi (Footer) - Dark Mode Text Fixes */
:root.dark-mode .main-footer {
    color: rgba(255, 255, 255, 0.7) !important;
}

:root.dark-mode .footer-menu h3,
:root.dark-mode .footer-news h3 {
    color: #ffffff !important;
}

:root.dark-mode .footer-menu a {
    color: rgba(255, 255, 255, 0.6) !important;
}

:root.dark-mode .footer-menu a:hover {
    color: var(--primary-light) !important;
}

:root.dark-mode .footer-bottom {
    color: rgba(255, 255, 255, 0.5) !important;
}

:root.dark-mode .footer-news .news-item a {
    color: rgba(255, 255, 255, 0.9) !important;
}

:root.dark-mode .footer-news .news-item .date {
    color: rgba(255, 255, 255, 0.5) !important;
}

:root.dark-mode .footer-brand .copyright {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Köşe Yazarları (Columnists) Slider Buttons */
:root.dark-mode .columnists-widget .widget-header .title {
    color: #ffffff !important;
}

:root.dark-mode .columnists-widget .widget-header button {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

:root.dark-mode .columnists-widget .widget-header .nav-btns a {
    color: #ffffff !important;
}

/* Kripto Paralar İç Sayfası */
:root.dark-mode .static-page-header h1 {
    color: #ffffff !important;
}

:root.dark-mode .static-page-header p {
    color: #cccccc !important;
}

:root.dark-mode .static-page .crypto-widget {
    background: #1e1e1e !important;
    box-shadow: none !important;
}

:root.dark-mode .league-table tr {
    border-bottom-color: #333 !important;
}

:root.dark-mode .league-table tr:hover {
    background: #2a2a2a !important;
}

:root.dark-mode .league-table td {
    color: #e0e0e0 !important;
    border-bottom-color: #333 !important;
}

:root.dark-mode .league-table td strong {
    color: #ffffff !important;
}

:root.dark-mode .league-table th {
    background: #111 !important;
    color: #fff !important;
}

/* Hava Durumu İç Sayfası */
:root.dark-mode .weather-page-wrapper {
    background: var(--bg) !important;
}

:root.dark-mode .weather-banner-header {
    background: #1e1e1e !important;
}

:root.dark-mode .weather-banner-header h1 {
    color: #ffffff !important;
}

:root.dark-mode .weather-banner-header select {
    background: #333 !important;
    color: #fff !important;
    border-color: #444 !important;
}

:root.dark-mode .weather-banner-header label {
    color: #e0e0e0 !important;
}

:root.dark-mode .wd-item {
    background: #1e1e1e !important;
    box-shadow: none !important;
}

:root.dark-mode .wd-item-header {
    color: #ffffff !important;
    border-bottom-color: #333 !important;
}

:root.dark-mode .wd-stat {
    background: #2a2a2a !important;
}

:root.dark-mode .wd-stat-label {
    color: #aaaaaa !important;
}

:root.dark-mode .wd-stat-val {
    color: #ffffff !important;
}

/* Tüm Yazarlar Listesi Sayfası */
:root.dark-mode .author-card {
    background: #1e1e1e !important;
    border-color: #333 !important;
}

:root.dark-mode .author-card img {
    border-color: #333 !important;
}

:root.dark-mode .author-card h3 a {
    color: #ffffff !important;
}

/* Header Menü - En Çok Okunanlar Linki */
.most-read-link {
    color: #ffffff !important;
    font-weight: bold !important;
}

.most-read-link i {
    color: #e74c3c !important;
}

:root.dark-mode .most-read-link {
    color: #e74c3c !important;
}

/* Kategori Sekmeleri (Dünya, Gündem, vb.) Dark Mode */
:root.dark-mode .cat-tab-btn {
    color: #aaa !important;
}

:root.dark-mode .cat-tab-btn.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}

:root.dark-mode .sports-side-item {
    background: #1e1e1e !important;
    box-shadow: none !important;
}

:root.dark-mode .sports-side-item a {
    color: #ffffff !important;
}

/* Günün Sözü Banner */
.quote-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quote-bg-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    right: 30px;
    top: 20px;
}

.quote-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.quote-content h3 {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quote-content p {
    margin: 0;
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    font-weight: 500;
}

.quote-content span {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Günün Sözü Banner - Dark Mode Uyarlaması */
:root.dark-mode .quote-banner {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

:root.dark-mode .quote-content h3 {
    color: #94a3b8;
}

:root.dark-mode .quote-bg-icon {
    color: rgba(255, 255, 255, 0.02);
}

/* ===== MOBİL UYUMLULUK (RESPONSIVE) ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {




    /* Layout */
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    /* Grids */
    .news-grid,
    .news-grid-2 {
        grid-template-columns: 1fr;
    }

    .category-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
    }

    /* Slider */
    .hero-slider {
        height: 260px;
        /* Mobilde daha okunaklı dikey alan */
        aspect-ratio: auto;
        /* Desktop'taki 16/9 oranını iptal et */
    }

    /* Son Dakika Altı Döviz (Mobilde Gizle) */
    .breaking-finance {
        display: none !important;
    }

    /* Son Dakika Mobilde Otomatik Kayan Bant (Marquee) */
    .breaking-nav {
        display: none !important;
    }

    .breaking-content {
        overflow: hidden;
        position: relative;
    }

    .breaking-list {
        display: flex;
        position: static;
        flex-wrap: nowrap;
        width: max-content;
        animation: breakingMarquee 25s linear infinite;
        will-change: transform;
    }

    .breaking-list:hover {
        animation-play-state: paused;
    }

    @keyframes breakingMarquee {
        0% {
            transform: translateX(100vw);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .breaking-item {
        position: static !important;
        opacity: 1 !important;
        display: flex !important;
        pointer-events: auto !important;
        margin-right: 30px;
        flex-shrink: 0;
        width: auto !important;
    }

    /* Mobil App Bottom Bar */
    body {
        padding-bottom: 60px;
        /* Menünün altı kapatmasını engeller */
    }

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: var(--bg);
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-around;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    :root.dark-mode .mobile-bottom-bar {
        background: var(--bg);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .bottom-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        flex: 1;
        gap: 4px;
        transition: color 0.2s ease;
    }

    .bottom-bar-item i {
        font-size: 20px;
    }

    .bottom-bar-item span {
        font-size: 10px;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
    }

    .bottom-bar-item.active,
    .bottom-bar-item:hover {
        color: var(--primary);
    }

    .scroll-top {
        bottom: 120px;
    }    /* Yukarı çık butonunu menünün üstüne al */
}

/* WHATSAPP İHBAR BALONU */
.wa-ihbar-bubble {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounceIn 0.8s ease-out;
}

.wa-ihbar-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.wa-ihbar-bubble i {
    font-size: 30px;
    margin-right: 12px;
    animation: pulse-whatsapp 2s infinite;
}

.wa-ihbar-text {
    display: flex;
    flex-direction: column;
}

.wa-ihbar-text .wa-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.wa-ihbar-text .wa-desc {
    font-size: 11px;
    opacity: 0.9;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .wa-ihbar-bubble {
        bottom: 80px;
        /* Mobil alt menü (bottom bar) 60px olduğu için üstüne alır */
        left: 15px;
        padding: 8px 15px 8px 12px;
    }

    .wa-ihbar-text .wa-title {
        font-size: 12px;
    }

    .wa-ihbar-text .wa-desc {
        display: none;
        /* Mobilde yazıyı kısaltmak için açıklamayı gizle */
    }

    .wa-ihbar-bubble i {
        font-size: 24px;
        margin-right: 8px;
    }
}

/* Desktopta gizle */
@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
    
    .mobile-weather-widget {
        display: none !important;
    }
}

/* SIDE MENU */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
}

.side-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.side-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.side-menu-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.side-menu-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.side-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}

.side-menu-nav li a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.side-menu-nav li a:hover {
    background: #f9f9f9;
    color: var(--primary);
}
/* Side Menu Dark Mode Fix */
:root.dark-mode .side-menu { background: #1a1a1a; }
:root.dark-mode .side-menu-header, :root.dark-mode .side-menu-actions { border-color: #333; }
:root.dark-mode .side-menu-close { color: #fff; }
:root.dark-mode .side-menu-btn { background: #2a2a2a; color: #fff; border: 1px solid #333; }
:root.dark-mode .side-menu-nav li a { color: #e0e0e0; border-bottom: 1px solid #333; }
:root.dark-mode .side-menu-nav li a:hover { background: #2a2a2a; color: var(--primary); }
:root.dark-mode .mobile-weather-widget { background: transparent !important; border: none !important; }
:root.dark-mode .mw-card { background: #1a1a1a !important; border: 1px solid #333 !important; box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important; }
:root.dark-mode .mobile-weather-widget div, :root.dark-mode #weatherTempValueMobile { color: #e0e0e0 !important; }
:root.dark-mode .mw-city-select .dropdown-selected { background: #222 !important; border-color: #444 !important; color: #fff !important; }
:root.dark-mode .mw-city-select .dropdown-options { background: #222 !important; border-color: #444 !important; }
:root.dark-mode .mw-city-select .dropdown-options li { color: #ccc !important; border-bottom-color: #333 !important; }
:root.dark-mode .mw-city-select .dropdown-options li:hover { background: #333 !important; }

.dropdown-options { z-index: 1000 !important; }

/* === GLOBAL ADVERTISING STYLES === */
.ad-zone { display: block; overflow: hidden; margin: 0 auto; clear: both; max-width: 100%; box-sizing: border-box; }
.ad-zone img, .ad-zone ins, .ad-zone iframe { max-width: 100% !important; height: auto; object-fit: contain; }
.ad-zone:empty { display: none !important; }
.ad-container { margin: 20px 0; text-align: center; }
.ad-container:empty { display: none !important; }

.ad-sidebar-sticky {
    position: sticky;
    top: 80px;
    z-index: 100;
    margin-top: 20px;
}

.ad-infeed {
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 30px 0;
}
.ad-infeed:empty {
    display: none !important;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .ad-sidebar-sticky { display: none !important; }
    .ad-infeed { padding: 5px 0; margin: 20px 0; }
}

@media (min-width: 769px) { .text-resizer { display: none !important; } }

@media (max-width: 768px) { .desktop-only-icon { display: none !important; } }
