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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

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

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

/* Top Bar - Son Dakika & Kripto */
.top-bar {
    background: #2c2c2c;
    color: #fff;
    font-size: 12px;
    overflow: hidden;
}

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

.top-bar-content {
    display: flex;
    align-items: stretch;
}

/* Son Dakika Haberleri - Sol */
.breaking-news-bar {
    flex: 1;
    display: flex;
    align-items: center;
    background: #2c2c2c;
    position: relative;
    gap: 5px;
}

.breaking-label {
    background: #c1121f;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.breaking-nav {
    background: #444;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.breaking-nav:hover {
    background: #666;
    transform: scale(1.1);
}

.breaking-nav.prev {
    margin-left: 10px;
}

.breaking-nav.next {
    margin-right: 10px;
}

.breaking-container {
    flex: 1;
    position: relative;
    height: 40px;
    overflow: visible;
}

.breaking-news-item {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    padding: 0 15px;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.breaking-news-item.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.breaking-news-item span.breaking-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-news-item:hover {
    color: #ffd700;
}

/* Breaking News Icon - Heartbeat/Pulse */
.breaking-icon {
    display: inline-block !important;
    width: 24px;
    height: 16px;
    min-width: 24px;
    min-height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-right: 10px;
    z-index: 10;
    background: transparent;
}

.breaking-icon::before,
.breaking-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #ff4444;
    border-radius: 2px;
    animation: heartbeat 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-icon::before {
    left: 3px;
    height: 12px;
    top: 2px;
    animation-delay: 0s;
}

.breaking-icon::after {
    right: 3px;
    height: 16px;
    top: 0;
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    25% {
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    75% {
        transform: scaleY(0.6);
        opacity: 0.8;
    }
}

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

/* Market Ticker - Döviz & Kripto - Sağ Taraf */
.market-ticker {
    display: flex;
    background: #2c2c2c;
    border-left: 1px solid #444;
    flex-shrink: 0;
    overflow-x: auto;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    border-left: 1px solid #444;
    white-space: nowrap;
    flex-shrink: 0;
}

.market-item:first-child {
    border-left: none;
}

.market-item.crypto {
    background: #1a1a1a;
}

.market-label {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.market-value {
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.market-change {
    font-size: 10px;
}

.market-change.up {
    color: #27ae60;
}

.market-change.down {
    color: #e74c3c;
}

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

/* Header Widgets - Arama & Hava Durumu */
.header-widgets {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Arama Kutusu */
.search-box {
    position: relative;
}

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

.search-input {
    width: 220px;
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #c1121f;
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
    width: 260px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #c1121f;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #a00f1a;
    transform: translateY(-50%) scale(1.1);
}

/* Hava Durumu Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-city {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.weather-temp {
    font-size: 15px;
    font-weight: 700;
    color: #c1121f;
}

.weather-status {
    font-size: 12px;
    color: #666;
}

.city-select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    outline: none;
    padding: 0;
}

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

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

.logo:hover {
    opacity: 0.9;
}

.logo:active {
    opacity: 0.8;
}

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

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    color: #c1121f;
    margin-bottom: 5px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Navigation */
.main-nav {
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 18px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-menu li a:hover {
    background: #34495e;
    color: #fff;
}

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

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

/* Hamburger Menu Button */
.hamburger-menu-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    margin-left: 15px;
}

.hamburger-menu-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.hamburger-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger-menu-btn.active {
    background: #c1121f;
    border-color: #c1121f;
}

.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

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

/* Mega Menu Dropdown */
.mega-menu-dropdown {
    background: #3a3a3a;
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-top: 1px solid #2c3e50;
}

.mega-menu-dropdown.active {
    max-height: 450px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px 0;
}

.mega-col h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #c1121f;
}

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

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.mega-col ul li a:hover {
    color: #c1121f;
    padding-left: 10px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

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

/* News Slider - 14'lü Slider */
.news-slider-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    z-index: 15;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

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

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.slider-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
    pointer-events: none;
    z-index: 1;
}

.slider-overlay h2 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Slider Pagination - Sayfa Numaraları */
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    pointer-events: none;
}

.slider-pagination .page-dot {
    pointer-events: auto;
}

.page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.page-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.page-dot.active {
    background: #c1121f;
    color: white;
    transform: scale(1.15);
}

/* Sekmeli Haber Bölümü (1 Büyük + 4 Küçük) */
.tabbed-news-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 25px;
}

.news-tab {
    padding: 18px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
}

.news-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #e0e0e0;
}

.news-tab:hover {
    color: #000;
}

.news-tab.active {
    color: #c1121f;
    border-bottom-color: #c1121f;
}

.tab-content {
    display: none;
    padding: 25px;
    animation: fadeInContent 0.3s ease-in-out;
}

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

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Sol - Büyük Haber */
.tab-main-news {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.tab-main-news:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

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

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

.tab-main-news:hover img {
    transform: scale(1.05);
}

.tab-main-content {
    padding: 20px;
}

.tab-main-content h2 {
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 12px;
}

.tab-main-news:hover h2 {
    color: #c1121f;
}

.tab-main-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Sağ - 4 Küçük Haber */
.tab-side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-small-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.tab-small-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

.tab-small-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
}

.tab-small-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

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

.tab-small-item:hover img {
    transform: scale(1.05);
}

.tab-small-item h3 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.tab-small-item:hover h3 {
    color: #c1121f;
}

/* Kategori Haberleri - 3'lü Grid */
.category-news-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c1121f;
}

.category-header-bar h2 {
    font-size: 24px;
    color: #2d3748;
    margin: 0;
}

.view-all-btn {
    background: #c1121f;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #a00f1a;
    transform: translateX(3px);
}

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

.grid-news-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.grid-news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

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

.grid-news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.grid-news-image.no-image {
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-news-image.no-image span {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
}

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

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

.grid-news-content h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 8px;
}

.grid-news-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.grid-news-item:hover h3 {
    color: #c1121f;
}

.grid-news-time {
    font-size: 13px;
    color: #666;
}

/* Featured Section */
.featured-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-main {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.featured-card {
    display: block;
    height: 100%;
    position: relative;
}

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

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

.featured-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-overlay p {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.news-time {
    font-size: 13px;
    opacity: 0.8;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.news-card {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #eee;
}

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

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

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

.news-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* News List Section */
.news-list-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c1121f;
}

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

.news-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

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

.news-item-link {
    display: flex;
    gap: 20px;
}

.news-item-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.news-item-content {
    flex: 1;
}

.news-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.news-item:hover h3 {
    color: #c1121f;
}

.news-item-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.rates-widget {
    padding: 15px;
}

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

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

.rate-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.rate-value {
    font-weight: 700;
    font-size: 14px;
    color: #1e8449;
}

.popular-news {
    padding: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

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

.popular-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #c1121f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.popular-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

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

.popular-views {
    font-size: 12px;
    color: #999;
}

/* Güncel Konular Widget */
.current-topics {
    padding: 0;
    background: white;
}

.topic-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.topic-item:hover {
    background: #f9f9f9;
    color: #c1121f;
    padding-left: 25px;
}

/* Güncel Konular başlığı için özel stil */
.widget-current-topics .widget-title-current {
    background: transparent;
    color: #999;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}

/* Sponsorlu/Reklam Slider Widget */
.sponsored-widget {
    overflow: visible;
}

.sponsored-slider-wrapper {
    position: relative;
    padding: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Reklam Slider Navigation */
.ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px;
    color: #c1121f;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

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

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

/* Slider Container */
.sponsored-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.sponsored-overlay h4 {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Reklam Pagination */
.ad-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 0 15px 15px;
    flex-wrap: wrap;
}

.ad-dot {
    background: #ddd;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.breadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #c1121f;
}

.breadcrumb span {
    margin: 0 8px;
}

.news-detail-category a {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-detail-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

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

.news-detail-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-summary {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #c1121f;
}

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

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

.news-source {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* Page Content (Hakkımızda, İletişim vb.) */
.page-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid #c1121f;
}

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

.page-text p {
    margin-bottom: 20px;
}

.page-text h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.page-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.page-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-text ul li strong {
    color: #c1121f;
}

.page-text a {
    color: #c1121f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-text a:hover {
    color: #a00e1a;
    text-decoration: underline;
}

.page-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-style: italic;
    color: #666;
    text-align: center;
}

.news-source a {
    color: #c1121f;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    opacity: 0.9;
}

.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-news h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.related-content {
    padding: 15px;
}

.related-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

/* Category Page Slider */
.category-slider-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-slider-header {
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-slider-header h1 {
    font-size: 26px;
    margin: 0;
}

.category-slider-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.category-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.cat-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 28px;
    color: #333;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.cat-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.cat-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.cat-slide-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-slide-no-img span {
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
}

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

.cat-slide-overlay h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

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

.cat-page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.cat-page-dot:hover {
    background: rgba(255,255,255,0.8);
}

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

/* Category Page */
.category-header {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-header h1 {
    font-size: 28px;
    color: #c1121f;
    margin-bottom: 5px;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 30px 0;
}

.page-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #c1121f;
    color: white;
    border-color: #c1121f;
}

/* Sidebar News */
.latest-news-sidebar .sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

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

.latest-news-sidebar .sidebar-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.latest-news-sidebar .sidebar-news-item h4 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

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

/* Footer */
.main-footer {
    background: #2c2c2c;
    color: #b0b0b0;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-logo-fox {
    font-size: 32px;
    font-weight: 900;
    color: #c1121f;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.footer-tagline {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 45px);
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-icon.linkedin { background: #0077b5; }
.social-icon.youtube { background: #ff0000; }
.social-icon.pinterest { background: #e60023; }
.social-icon.whatsapp { background: #25d366; }

/* Footer Sections */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h4,
.footer-title {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #c1121f;
    padding-left: 5px;
}

/* Footer News */
.footer-news {
    list-style: none;
}

.footer-news li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #3a3a3a;
}

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

.footer-news a {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.3s;
}

.footer-news a:hover {
    color: #c1121f;
}

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

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

.tag:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

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

/* Yukarı Çık Butonu */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #c1121f;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #c1121f;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-top.show {
    display: flex;
    animation: bounceIn 0.5s;
}

.scroll-top:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(193,18,31,0.4);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-news-layout {
        grid-template-columns: 1fr;
    }
    
    .tab-main-news img {
        height: 300px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
    }
    
    .breaking-news-bar {
        width: 100%;
    }
    
    .breaking-nav {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .market-ticker {
        width: 100%;
        overflow-x: auto;
        border-left: none;
        border-top: 1px solid #444;
        flex-wrap: nowrap;
    }
    
    .market-item {
        min-width: auto;
        font-size: 11px;
    }
    
    .market-label {
        font-size: 10px;
    }
    
    .market-value {
        font-size: 11px;
    }
    
    /* Slider Mobil */
    .news-slider {
        height: 350px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .sponsored-slider-container {
        height: 300px;
    }
    
    .ad-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .ad-slider-nav.prev {
        left: 5px;
    }
    
    .ad-slider-nav.next {
        right: 5px;
    }
    
    .sponsored-overlay {
        padding: 20px 15px;
    }
    
    .sponsored-overlay h4 {
        font-size: 16px;
    }
    
    .ad-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .slider-overlay {
        padding: 20px 15px;
    }
    
    .slider-overlay h2 {
        font-size: 18px;
    }
    
    .slider-pagination {
        bottom: 10px;
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
        justify-content: center;
    }
    
    .page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    /* 3'lü Grid Mobil */
    .news-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-header-bar h2 {
        font-size: 20px;
    }
    
    .grid-news-image {
        height: 180px;
    }
    
    /* Sekmeli Bölüm Mobil */
    .tab-news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-main-news img {
        height: 250px;
    }
    
    .tab-small-item a {
        padding: 8px;
    }
    
    .tab-small-image {
        width: 100px;
        height: 70px;
    }
    
    .tab-small-item h3 {
        font-size: 13px;
    }
    
    /* Kategori Slider Mobil */
    .category-slider {
        height: 350px;
    }
    
    .cat-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .cat-slide-overlay {
        padding: 20px 15px;
    }
    
    .cat-slide-overlay h2 {
        font-size: 18px;
    }
    
    .cat-slider-pagination {
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .cat-page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .logo-image {
        max-height: 45px;
    }
    
    .logo {
        margin-left: 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mega-menu.active {
        max-height: 800px;
    }
    
    .header-widgets {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-input:focus {
        width: 100%;
    }
    
    .weather-widget {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a,
    .nav-menu li button {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li:not(:last-child) a::after {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        height: 350px;
    }
    
    .featured-overlay h2 {
        font-size: 20px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item-link {
        flex-direction: column;
    }
    
    .news-item-image {
        width: 100%;
        height: 200px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-icons {
        grid-template-columns: repeat(7, 45px);
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .news-detail {
        padding: 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        max-height: 35px;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 12px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-menu.active {
        max-height: 1000px;
    }
    
    .featured-main {
        height: 250px;
    }
    
    .featured-overlay {
        padding: 20px;
    }
    
    .featured-overlay h2 {
        font-size: 18px;
    }
    
    .news-card {
        height: 200px;
    }
    
    .news-list-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .sponsored-slider-container {
        height: 250px;
    }
    
    .ad-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .sponsored-overlay {
        padding: 15px 10px;
    }
    
    .sponsored-overlay h4 {
        font-size: 14px;
    }
    
    .ad-dot {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .ad-slider-pagination {
        gap: 3px;
        padding: 0 10px 10px;
    }
    
    .news-item-content h3 {
        font-size: 16px;
    }
    
    .news-detail-title {
        font-size: 20px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
}

