/**
 * Main Stylesheet
 * 
 * @package HaberPro
 */

/* CSS Variables */
:root {
    --primary-color: #FF0000;
    --secondary-color: #333333;
    --text-color: #333333;
    --bg-color: #ffffff;
    --border-color: #e0e0e0;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* Header Styles */
.site-header {
    background-color: #FF0000;
    width: 100%;
}

.top-section {
    padding: 0;
    background-color: #FF0000;
}

.red-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-w {
    display: flex;
    align-items: center;
}

.logo-w a {
    display: inline-block;
    text-decoration: none;
}

.logo-w img {
    max-height: 40px;
    width: auto;
    height: auto;
}

.site-title-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.menu-w {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    position: relative;
}

.top-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.top-menu li {
    margin: 0;
    padding: 0;
}

.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0;
    transition: opacity 0.2s ease;
}

.menu-item:hover {
    opacity: 0.8;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-container.hidden {
    display: none;
}

.search-input-button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-button svg {
    width: 24px;
    height: 24px;
}

.search-desktop-container {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    margin-top: 10px;
    display: none;
}

.search-container.active .search-desktop-container {
    display: block;
}

.search-bar-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.search-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #666666;
    text-decoration: none;
    cursor: pointer;
}

.mobile-search-button {
    display: none;
}

/* Header User Menu */
.header-user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.header-login-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-login-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.member-login-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.member-login-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-register-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.member-register-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

/* User Menu Dropdown */
.user-menu-dropdown {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.user-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.user-avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-wrapper .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.user-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.user-menu-dropdown.active .user-menu-toggle svg {
    transform: rotate(180deg);
}

.user-menu-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

.user-menu-dropdown.active .user-menu-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background: #f8f9fa;
    color: #ff0000;
}

.user-menu-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #666;
    transition: color 0.2s ease;
}

.user-menu-item:hover svg {
    color: #ff0000;
}

.user-menu-item.user-menu-logout {
    color: #dc3545;
}

.user-menu-item.user-menu-logout:hover {
    background: #fff5f5;
    color: #c82333;
}

.user-menu-item.user-menu-logout svg {
    color: #dc3545;
}

.user-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-login-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .member-login-button,
    .member-register-button {
        width: 100%;
        justify-content: center;
    }
    
    .user-name {
        display: none;
    }
    
    .user-menu-dropdown-content {
        right: 0;
        left: auto;
        min-width: 200px;
    }
}

.header-language-selector {
    display: flex;
    align-items: center;
}

.cursor-pointer {
    cursor: pointer;
}

/* Content Area - Modern Layout */
.content-area {
    width: 100%;
    padding: 0;
    background-color: #f8f9fa;
}

.main-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

.site-main {
    min-width: 0;
    padding: 40px 30px;
    background-color: #ffffff;
}

.posts-container {
    margin: 0;
    padding: 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    padding: 0;
}

/* Homepage Modern Layout */
.home .site-main,
.front-page .site-main {
    padding: 0;
    background-color: transparent;
}

.home .main-content-wrapper,
.front-page .main-content-wrapper {
    box-shadow: none;
    background-color: transparent;
}

/* Post Card - Modern Design */
.post-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.1);
}

.post-card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 60%; /* Modern aspect ratio */
    background-color: #f0f0f0;
}

.post-card-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.post-card:hover .post-card-thumbnail::after {
    opacity: 1;
}

.post-card-thumbnail img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

/* Post card görselleri için lazy loading opacity override */
.post-card-thumbnail img[loading="lazy"],
.post-thumbnail-img[loading="lazy"],
.post-card-thumbnail img[loading="lazy"].loaded,
.post-thumbnail-img[loading="lazy"].loaded {
    opacity: 1 !important;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.08);
}

.post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.post-card:hover .post-card-category {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.post-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
}

.entry-header {
    margin-bottom: 16px;
}

.entry-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.entry-title a:hover {
    color: #FF0000;
}

.entry-meta {
    margin: 12px 0 0 0;
}

.entry-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.entry-reading-time .haberpro-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.entry-reading-time .haberpro-reading-time-icon {
    font-size: 14px;
}

.entry-reading-time .haberpro-reading-time-value {
    font-weight: 600;
    color: #333;
}

.entry-reading-time .haberpro-reading-time-label {
    color: #999;
    font-size: 13px;
}

.meta-item .entry-reading-time {
    margin: 0;
    padding: 0;
}

.entry-meta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666666;
    transition: color 0.2s ease;
}

.meta-item:hover {
    color: #FF0000;
}

.meta-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.meta-item:hover .meta-icon {
    opacity: 1;
}

.entry-content {
    margin: 40px 0;
    color: #2c2c2c;
    line-height: 1.9;
    font-size: 18px;
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.entry-content p {
    margin: 0 0 24px 0;
    display: block;
}

.entry-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.entry-content h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 35px 0 18px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.entry-content h4 {
    font-size: 22px;
    line-height: 1.4;
    margin: 30px 0 15px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    border-left: 4px solid #FF0000;
    background-color: #f9f9f9;
    border-radius: 6px;
    font-style: italic;
    color: #555555;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.entry-content a {
    color: #FF0000;
    text-decoration: underline;
    text-decoration-color: rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #cc0000;
    text-decoration-color: #cc0000;
}

.entry-content strong,
.entry-content b {
    font-weight: 700;
    color: #1a1a1a;
}

.entry-content em,
.entry-content i {
    font-style: italic;
}

.entry-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    color: #d63384;
}

.entry-content pre {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: #2c2c2c;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-btn:hover {
    gap: 12px;
    color: #cc0000;
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(4px);
}

/* Single Post Styles - Modern Professional Design */
/* Single Post Styles */
.single article {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Single post sayfası için main-content-wrapper genişlik ayarı */
.single .main-content-wrapper {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0;
    display: grid !important;
    grid-template-columns: 1fr 360px !important;
    gap: 40px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

/* Sidebar - sadece desktop'ta görünür (tüm sayfalarda) */
@media (min-width: 1025px) {
    #secondary,
    aside#secondary,
    .widget-area.sidebar,
    .single #secondary,
    .single aside#secondary,
    .single .widget-area.sidebar,
    .home #secondary,
    .home aside#secondary,
    .home .widget-area.sidebar,
    .front-page #secondary,
    .front-page aside#secondary,
    .front-page .widget-area.sidebar,
    .archive #secondary,
    .archive aside#secondary,
    .archive .widget-area.sidebar,
    .category #secondary,
    .category aside#secondary,
    .category .widget-area.sidebar,
    .tag #secondary,
    .tag aside#secondary,
    .tag .widget-area.sidebar,
    .search #secondary,
    .search aside#secondary,
    .search .widget-area.sidebar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: auto !important;
        padding: 40px 30px !important;
        margin: 0 !important;
        overflow: visible !important;
        position: static !important;
        left: auto !important;
    }
}

.single .post-featured-image {
    width: 100%;
    margin: 0 0 40px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.single .post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single .post-featured-image:hover img {
    transform: scale(1.02);
}

.entry-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-badge {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    display: inline-block;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}

.single .entry-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.single .entry-title::first-letter {
    font-size: 120%;
    color: #FF0000;
}

.entry-summary {
    margin: 30px 0 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    border-left: 5px solid #FF0000;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.entry-summary-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
    color: #1a1a1a;
}

.entry-meta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin: 35px 0;
}

.entry-date-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    color: #666666;
}

.published-date,
.updated-date {
    color: #666666;
    font-size: 14px;
}

.entry-share-top {
    display: flex;
    align-items: center;
}

.share-buttons-compact {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 50%;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.share-btn-compact:hover {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
    border-color: transparent;
}

.share-btn-compact svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.share-btn-compact:hover svg {
    fill: #ffffff;
}

/* Facebook butonu için özel hover */
.share-btn-compact[aria-label*="Facebook"]:hover {
    background: linear-gradient(135deg, #1877f2 0%, #1565c0 100%);
}

.share-btn-compact[aria-label*="Twitter"]:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.share-btn-compact[aria-label*="WhatsApp"]:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.share-btn-compact[aria-label*="Telegram"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

/* Google News Takip Et Butonu */
.share-btn-compact.google-news-btn {
    min-width: auto;
    padding: 0 12px;
    width: auto;
    border-radius: 20px;
}

.share-btn-compact.google-news-btn .google-news-text {
    font-size: 12px;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0.3px;
}

.share-btn-compact.google-news-btn:hover {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.share-btn-compact.google-news-btn:hover svg {
    fill: #ffffff;
}

/* Google News Link (Logo) */
.google-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    transition: opacity 0.3s ease;
    text-decoration: none;
    margin-left: 4px;
    background: transparent;
}

.google-news-link:hover {
    opacity: 0.8;
}

.google-news-link img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100px;
    height: 20px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
}

/* Google News SVG için özel stil - SVG içindeki path'lerin renklerini koru */
.google-news-link svg,
.google-news-link img[src$=".svg"] {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    display: block;
    width: 100px;
    height: 20px;
}

.google-news-link svg {
    max-width: 100%;
    height: auto;
}

.google-news-link svg path {
    fill: inherit !important;
}

.entry-tags {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.tags-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    padding: 6px 14px;
    background-color: #f5f5f5;
    color: #333333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-link:hover {
    background-color: #FF0000;
    color: #ffffff;
}

/* Hashtag görünümü */
.hashtag-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hashtag-tag:hover {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #ffffff;
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.hashtag-symbol {
    font-weight: 700;
    color: #FF0000;
    font-size: 16px;
    transition: color 0.3s ease;
}

.hashtag-tag:hover .hashtag-symbol {
    color: #ffffff;
}

.hashtag-text {
    font-weight: 600;
    transition: color 0.3s ease;
}

.hashtag-tag:hover .hashtag-text {
    color: #ffffff;
}

.entry-like {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.social-share {
    margin-bottom: 30px;
}

.social-share-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-facebook:hover {
    background-color: #1877f2;
    color: #ffffff;
}

.social-twitter:hover {
    background-color: #1da1f2;
    color: #ffffff;
}

.social-linkedin:hover {
    background-color: #0077b5;
    color: #ffffff;
}

.social-whatsapp:hover {
    background-color: #25d366;
    color: #ffffff;
}

.social-telegram:hover {
    background-color: #0088cc;
    color: #ffffff;
}

.entry-author-tags {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.entry-author-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-name {
    font-weight: 600;
    color: #333333;
}

.author-name a {
    color: #FF0000;
    text-decoration: none;
}

.author-name a:hover {
    text-decoration: underline;
}

.author-section {
    font-size: 14px;
    color: #666666;
}

.entry-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.keyword-tag {
    padding: 6px 14px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.keyword-tag:hover {
    background-color: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
}

.author-info {
    flex: 1;
}

.author-info .author-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.author-info .author-name a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-info .author-name a:hover {
    color: #FF0000;
}

.author-description {
    margin: 0 0 15px 0;
    color: #666666;
    line-height: 1.6;
}

.author-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.author-posts-count {
    color: #666666;
    font-size: 14px;
}

.author-posts-link {
    color: #FF0000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.author-posts-link:hover {
    opacity: 0.8;
}

/* Related Posts */
.related-posts {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.related-posts-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #FF0000;
}

.related-posts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-post-link {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-post-link img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.related-post-link .new3card-body {
    padding: 15px;
}

.related-post-link .new3card-body h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333333;
    transition: color 0.2s ease;
}

.related-post-link:hover .new3card-body h3 {
    color: #FF0000;
}

/* Breadcrumb */
.breadcrumb-navigation {
    margin: 20px 0;
    padding: 15px 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666666;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: #999999;
}

.breadcrumb-item a {
    color: #FF0000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333333;
    font-weight: 600;
}

/* Page Links */
.page-links {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.page-links a,
.page-links > span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
    text-decoration: none;
    color: #333333;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
}

.page-links a:hover {
    background-color: #FF0000;
    color: #ffffff;
}

.page-links > span {
    background-color: #FF0000;
    color: #ffffff;
    font-weight: 600;
}

/* Comments */
.comments-area {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comments-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    padding-bottom: 15px;
    border-bottom: 2px solid #FF0000;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-meta {
    flex: 1;
}

.comment-author .fn {
    font-weight: 600;
    color: #333333;
    text-decoration: none;
}

.comment-metadata {
    font-size: 13px;
    color: #666666;
    margin-top: 5px;
}

.comment-content {
    margin-top: 15px;
    line-height: 1.7;
    color: #555555;
}

/* Sidebar */
.widget-area {
    min-width: 0;
}

.widget {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.widget-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF0000;
}

/* Category News Section - Modern Professional Design */
.category-news-section {
    margin: 60px 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.category-news-section:first-child {
    margin-top: 40px;
}

.category-news-section:last-child {
    margin-bottom: 60px;
}

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 30px;
}

.category-section-title {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
}

.category-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 26px;
    background: linear-gradient(180deg, #FF0000 0%, #cc0000 100%);
    border-radius: 2px;
}

.category-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FF0000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: rgba(255, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-more-link:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateX(4px);
}

.category-more-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.category-more-link:hover::after {
    transform: translateX(4px);
}

.news-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
    padding: 0 30px;
}

.news-row.gap-xs-0 {
    gap: 24px;
}

.news-big-date {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-big-date span {
    position: relative;
    padding: 0 0 0 12px;
}

.news-big-date span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #FF0000 0%, #cc0000 100%);
    border-radius: 2px;
}

.news-big-date::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #FF0000 0%, rgba(255, 0, 0, 0.2) 50%, transparent 100%);
    border-radius: 1px;
}

@media (max-width: 1024px) {
    .category-news-section {
        margin: 50px 0;
    }
    
    .category-section-header {
        padding: 0 25px;
    }
    
    .news-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 25px;
    }
    
    .news-big-date {
        padding: 0 25px;
        font-size: 20px;
    }
}

/* Single Post Responsive */
@media (max-width: 1024px) {
    .single .site-main {
        padding: 30px 25px;
    }
    
    .single .entry-title {
        font-size: 36px;
    }
    
    .single .main-content-wrapper {
        gap: 30px;
    }
    
    .entry-content {
        font-size: 17px;
    }
    
    .entry-content h2 {
        font-size: 28px;
    }
    
    .entry-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .single .site-main {
        padding: 20px 15px;
    }
    
    .single .main-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Mobile görünümde sidebar'ı tamamen gizle - AMP sayfası gibi (tüm sayfalarda) */
    #secondary,
    aside#secondary,
    .widget-area.sidebar,
    .single #secondary,
    .single aside#secondary,
    .single .widget-area.sidebar,
    .home #secondary,
    .home aside#secondary,
    .home .widget-area.sidebar,
    .front-page #secondary,
    .front-page aside#secondary,
    .front-page .widget-area.sidebar,
    .archive #secondary,
    .archive aside#secondary,
    .archive .widget-area.sidebar,
    .category #secondary,
    .category aside#secondary,
    .category .widget-area.sidebar,
    .tag #secondary,
    .tag aside#secondary,
    .tag .widget-area.sidebar,
    .search #secondary,
    .search aside#secondary,
    .search .widget-area.sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Mobile'da ana sayfada slider'ı tamamen gizle */
    .home .SliderRow,
    .front-page .SliderRow,
    .home .SliderColumn,
    .front-page .SliderColumn,
    .home .hbRow.hbMainSlider,
    .front-page .hbRow.hbMainSlider,
    .home .new3slider-container,
    .front-page .new3slider-container,
    .home #sliderWrapper,
    .front-page #sliderWrapper,
    .home #slides,
    .front-page #slides,
    .home .new3slider,
    .front-page .new3slider,
    .home .new3slide,
    .front-page .new3slide {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Mobile'da ana sayfada son dakika barını tamamen gizle */
    .home .son-dakika-bar,
    .front-page .son-dakika-bar,
    .home .son-dakika-bar-container,
    .front-page .son-dakika-bar-container,
    .home .son-dakika-bar-label,
    .front-page .son-dakika-bar-label,
    .home .son-dakika-bar-content,
    .front-page .son-dakika-bar-content,
    .home .son-dakika-ticker-wrapper,
    .front-page .son-dakika-ticker-wrapper,
    .home .son-dakika-ticker,
    .front-page .son-dakika-ticker,
    .home .son-dakika-item,
    .front-page .son-dakika-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Mobile'da main-content-wrapper tek kolon - tüm sayfalarda */
    .main-content-wrapper,
    .single .main-content-wrapper,
    .home .main-content-wrapper,
    .front-page .main-content-wrapper,
    .archive .main-content-wrapper,
    .category .main-content-wrapper,
    .tag .main-content-wrapper,
    .search .main-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    /* Mobile'da site-main tam genişlik - tüm sayfalarda */
    .site-main,
    .single .site-main,
    .home .site-main,
    .front-page .site-main,
    .archive .site-main,
    .category .site-main,
    .tag .site-main,
    .search .site-main {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .single .entry-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .entry-summary {
        margin: 25px 0 30px 0;
        padding: 20px;
    }
    
    .entry-summary-title {
        font-size: 19px;
    }
    
    .entry-content {
        font-size: 16px;
        line-height: 1.8;
        margin: 30px 0;
    }
    
    .entry-content h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }
    
    .entry-content h3 {
        font-size: 21px;
        margin: 25px 0 12px 0;
    }
    
    .entry-content h4 {
        font-size: 19px;
        margin: 20px 0 10px 0;
    }
    
    .entry-content blockquote {
        margin: 20px 0;
        padding: 20px 25px;
    }
    
    .entry-content img {
        margin: 20px 0;
    }
    
    .entry-meta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
        margin: 25px 0;
    }
    
    .share-buttons-compact {
        gap: 8px;
    }
    
    .share-btn-compact {
        width: 40px;
        height: 40px;
    }
    
    .social-share-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .entry-author-tags {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-news-section {
        margin: 40px 0;
    }
    
    .category-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 20px;
    }
    
    .category-section-title {
        font-size: 22px;
        width: 100%;
    }
    
    .category-more-link {
        align-self: flex-end;
    }
    
    .news-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .news-big-date {
        padding: 0 20px;
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .news-box-type2 {
        grid-column: span 1;
    }
    
    .news-box-type3 {
        grid-column: span 1;
    }
    
    .news-box-type2 .img-wrapper {
        height: 280px;
    }
    
    .news-box-type3 .img-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .category-news-section {
        margin: 30px 0;
    }
    
    .category-section-header {
        padding: 0 15px;
    }
    
    .category-section-title {
        font-size: 20px;
        padding-left: 12px;
    }
    
    .category-section-title::before {
        width: 3px;
        height: 20px;
    }
    
    .category-more-link {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .news-row {
        gap: 18px;
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .news-big-date {
        padding: 0 15px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .news-big-date span::before {
        width: 3px;
        height: 16px;
    }
    
    .news-box-type2 .img-wrapper {
        height: 240px;
    }
    
    .news-box-type3 .img-wrapper {
        height: 180px;
    }
    
    .news-txt {
        padding: 16px;
        font-size: 15px;
    }
}

.news-box-type2,
.news-box-type3 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
}

/* İlk haber büyük (type2) - 2 sütun kaplar */
.news-box-type2 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Küçük haberler (type3) - 1 sütun */
.news-box-type3 {
    grid-column: span 1;
    grid-row: span 1;
}

/* News item içindeki link */
.news-item > a {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
    float: none !important;
}

.news-item > a:hover {
    text-decoration: none;
}

.news-item > a:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

.news-box-type2::before,
.news-box-type3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #cc0000 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.news-box-type2:hover::before,
.news-box-type3:hover::before {
    opacity: 1;
}

.news-box-type2:hover,
.news-box-type3:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.15);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #f0f0f0;
}

.news-box-type2 .img-wrapper {
    height: 320px;
}

.news-box-type3 .img-wrapper {
    height: 220px;
}

.img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-box-type2:hover .img-wrapper::after,
.news-box-type3:hover .img-wrapper::after {
    opacity: 1;
}

.img-wrapper img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2;
}

/* Category news section görselleri için lazy loading opacity override */
.img-wrapper img[loading="lazy"],
.news-item img[loading="lazy"],
.category-news-section img[loading="lazy"],
.img-wrapper img[loading="lazy"].loaded,
.news-item img[loading="lazy"].loaded,
.category-news-section img[loading="lazy"].loaded {
    opacity: 1 !important;
}

.news-box-type2:hover .img-wrapper img,
.news-box-type3:hover .img-wrapper img {
    transform: scale(1.1);
}

.news-txt {
    padding: 20px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    background-color: #ffffff;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
    word-break: break-word;
}

.news-time-dark {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.news-box-type2:hover .news-time-dark,
.news-box-type3:hover .news-time-dark {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.mb-24 {
    margin-bottom: 24px;
}

.gap-xs-0 {
    gap: 0;
}

/* Slider Container - Modern Design (basic styles - detailed in slider-new.css) */
.SliderRow {
    width: 100%;
    margin: 50px 0;
    padding: 0 30px;
    background-color: transparent;
}

.SliderColumn {
    max-width: 1400px;
    margin: 0 auto;
}

.hbRow.hbMainSlider {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.new3slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
}

/* Mobile görünümde ana sayfada slider'ı tamamen gizle */
@media (max-width: 768px) {
    /* Ana sayfada slider'ı gizle */
    .home .SliderRow,
    .front-page .SliderRow,
    .home .SliderColumn,
    .front-page .SliderColumn,
    .home .hbRow.hbMainSlider,
    .front-page .hbRow.hbMainSlider,
    .home .new3slider-container,
    .front-page .new3slider-container,
    .home #sliderWrapper,
    .front-page #sliderWrapper,
    .home #slides,
    .front-page #slides {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Ana sayfada slider yoksa diğer sayfalarda göster */
    .SliderRow:not(.home .SliderRow):not(.front-page .SliderRow) {
        margin: 20px 0;
        padding: 0 15px;
    }
    
    .SliderColumn:not(.home .SliderColumn):not(.front-page .SliderColumn) {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hbRow.hbMainSlider:not(.home .hbRow.hbMainSlider):not(.front-page .hbRow.hbMainSlider) {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .new3slider-container:not(.home .new3slider-container):not(.front-page .new3slider-container) {
        margin-bottom: 20px;
        border-radius: 12px;
    }
}

/* Web Stories & Son Dakika Bar - Modern Design (basic styles - detailed in separate CSS files) */
.web-stories-section {
    margin: 30px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.son-dakika-bar-section {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 0;
    z-index: 999999;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #FF0000;
    color: #ffffff;
    text-decoration: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Ad Container */
.ad-container {
    margin: 20px 0;
    text-align: center;
}

.header-ad.desktop-ad,
.footer-ad.desktop-ad {
    display: block;
}

.header-ad.mobile-ad,
.footer-ad.mobile-ad {
    display: none;
}

@media (max-width: 768px) {
    .header-ad.desktop-ad,
    .footer-ad.desktop-ad {
        display: none;
    }
    
    .header-ad.mobile-ad,
    .footer-ad.mobile-ad {
        display: block;
    }
    
    .mobile-search-button {
        display: block;
    }
}

/* Sidebar Modern Design */
.widget-area.sidebar {
    padding: 40px 30px;
    background-color: #ffffff;
    border-left: 1px solid #f0f0f0;
    min-height: 200px;
    min-width: 360px;
}

.widget-other-news-empty {
    color: #999999;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.widget {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.widget-title {
    margin: 0 0 18px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 3px solid #FF0000;
    letter-spacing: -0.3px;
}

/* Sidebar Other News Widget */
.widget-other-news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.widget-other-news-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 18px;
    transition: all 0.3s ease;
}

.widget-other-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-other-news-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.widget-other-news-link:hover {
    color: inherit;
}

.widget-other-news-image {
    flex-shrink: 0;
    width: 100px;
    min-width: 100px;
    height: 70px;
    min-height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
    display: block;
    line-height: 0;
    font-size: 0;
}

.widget-other-news-img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none;
    margin: 0;
    padding: 0;
    vertical-align: top;
    position: relative;
    z-index: 1;
}

.widget-other-news-link:hover .widget-other-news-img {
    transform: scale(1.1);
}

.widget-other-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.widget-other-news-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    transition: color 0.3s ease;
}

.widget-other-news-link:hover .widget-other-news-title {
    color: #FF0000;
}

.widget-other-news-date {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
    line-height: 1.3;
}

/* Responsive Content */
@media (max-width: 1200px) {
    .main-content-wrapper {
        gap: 30px;
    }
    
    .site-main {
        padding: 30px 25px;
    }
    
    .widget-area.sidebar {
        padding: 30px 25px;
    }
    
    .widget-other-news-image {
        width: 90px;
        height: 65px;
    }
    
    .widget-other-news-title {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    /* Tablet ve mobile'da sidebar'ı tamamen gizle - tüm sayfalarda (ana sayfa, single, archive vb.) */
    #secondary,
    aside#secondary,
    .widget-area.sidebar,
    .single #secondary,
    .single aside#secondary,
    .single .widget-area.sidebar,
    .home #secondary,
    .home aside#secondary,
    .home .widget-area.sidebar,
    .front-page #secondary,
    .front-page aside#secondary,
    .front-page .widget-area.sidebar,
    .archive #secondary,
    .archive aside#secondary,
    .archive .widget-area.sidebar,
    .category #secondary,
    .category aside#secondary,
    .category .widget-area.sidebar,
    .tag #secondary,
    .tag aside#secondary,
    .tag .widget-area.sidebar,
    .search #secondary,
    .search aside#secondary,
    .search .widget-area.sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    /* Mobile'da ana sayfada sidebar'ı ekstra gizle */
    @media (max-width: 768px) {
        .home #secondary,
        .home aside#secondary,
        .home .widget-area.sidebar,
        .front-page #secondary,
        .front-page aside#secondary,
        .front-page .widget-area.sidebar {
            position: absolute !important;
            left: -9999px !important;
        }
    }
    
    /* Tüm sayfalarda main-content-wrapper tek kolon */
    .main-content-wrapper,
    .single .main-content-wrapper,
    .home .main-content-wrapper,
    .front-page .main-content-wrapper,
    .archive .main-content-wrapper,
    .category .main-content-wrapper,
    .tag .main-content-wrapper,
    .search .main-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .widget-area.sidebar {
        border-left: none;
        border-top: none;
    }
}

@media (max-width: 768px) {
    .red-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    
    .menu-w {
        width: auto;
        justify-content: flex-end;
        position: relative;
        z-index: 1000;
    }
    
    /* Mobile'da header-user-menu ve search-container'ı gizle */
    .header-user-menu,
    .search-container.hidden,
    .header-language-selector {
        display: none !important;
    }
    
    /* Mobile menü toggle butonunun önünde olmasını sağla */
    .mobile-menu-toggle {
        order: 999;
        flex-shrink: 0;
    }
    
    /* Desktop menüyü mobilde gizle */
    .top-menu.desktop-menu {
        display: none !important;
    }
    
    /* Mobile menü toggle butonu - Mobile'da göster */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        background: transparent;
        border: none;
        cursor: pointer !important;
        padding: 5px !important;
        z-index: 10001 !important;
        position: relative !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        outline: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
    }
    
    .mobile-menu-toggle:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    .mobile-menu-toggle .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Mobile menü sidebar */
    .mobile-menu-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        z-index: 10000;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .mobile-menu-sidebar.active {
        right: 0;
    }
    
    .mobile-menu-content {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        background-color: #FF0000;
    }
    
    .mobile-menu-title {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
    }
    
    .mobile-menu-close {
        background: transparent;
        border: none;
        color: #ffffff;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu-close:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }
    
    .mobile-menu-nav {
        flex: 1;
        overflow-y: auto;
        padding: 0;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-list li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-menu-item {
        display: block;
        padding: 18px 20px;
        color: #333333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        transition: background-color 0.2s ease, color 0.2s ease;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-item:hover,
    .mobile-menu-item:focus {
        background-color: #f8f8f8;
        color: #FF0000;
    }
    
    .mobile-menu-search {
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        background-color: #f8f8f8;
    }
    
    .mobile-search-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 8px 12px;
    }
    
    .mobile-search-input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 14px;
        color: #333333;
        background: transparent;
    }
    
    .mobile-search-input::placeholder {
        color: #999999;
    }
    
    .mobile-search-submit {
        background: transparent;
        border: none;
        color: #666666;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease;
    }
    
    .mobile-search-submit:hover {
        color: #FF0000;
    }
    
    .mobile-search-submit svg {
        width: 20px;
        height: 20px;
    }
    
    /* Header language selector'ı mobilde gizle */
    .header-language-selector {
        display: none;
    }
    }
    
    /* Desktop'ta mobile menü toggle butonunu gizle */
    @media (min-width: 769px) {
        .mobile-menu-toggle {
            display: none !important;
        }
        
        .top-menu.desktop-menu {
            display: flex !important;
        }
    }
    
    /* Mobile overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Body scroll lock when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    .site-main {
        padding: 25px 20px;
    }
    
    .widget-area.sidebar {
        padding: 25px 20px;
    }
    
    .widget-other-news-list {
        gap: 15px;
    }
    
    .widget-other-news-item {
        padding-bottom: 15px;
    }
    
    .widget-other-news-image {
        width: 80px;
        height: 60px;
    }
    
    .widget-other-news-link {
        gap: 10px;
    }
    
    .widget-other-news-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .widget-other-news-date {
        font-size: 11px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-news-section {
        margin: 30px 0;
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .news-big-date {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .main-content-wrapper {
        padding: 0;
    }
}

/* Footer - Professional Design (Haberler.com Style) */
.site-footer {
    background-color: #ffffff;
    color: #333333;
    margin-top: 80px;
    border-top: 3px solid #FF0000;
}

/* Footer Top Bar */
.footer-top-bar {
    border-bottom: 2px solid #f0f0f0;
    padding: 30px 0;
    background-color: #fafafa;
}

.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    display: block;
    height: auto;
    max-width: 200px;
    max-height: 40px;
    object-fit: contain;
}

.footer-copyright {
    color: #666666;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding-left: 15px;
    border-left: 2px solid #e0e0e0;
}

.footer-top-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-about-link {
    color: #333333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-about-link:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.05);
    text-decoration: none;
}

.footer-dot-separator {
    color: #999999;
    font-size: 13px;
    margin: 0 5px;
}

/* Footer Main Content */
.footer-main {
    padding: 50px 0 40px 0;
    background-color: #ffffff;
}

.footer-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Menus - 5 Columns Grid */
.footer-category-menus {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    margin-bottom: 40px;
}

.footer-category-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-category-heading {
    margin: 0 0 18px 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    position: relative;
    padding-bottom: 12px;
}

.footer-category-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, transparent 100%);
    border-radius: 2px;
}

.footer-category-heading a {
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-category-heading a:hover {
    color: #FF0000;
}

.footer-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-category-list li {
    margin: 0;
    padding: 0;
}

.footer-category-list a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
    position: relative;
}

.footer-category-list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #FF0000;
    transition: width 0.3s ease;
}

.footer-category-list a:hover {
    color: #FF0000;
    padding-left: 8px;
}

.footer-category-list a:hover::before {
    width: 4px;
}

/* Social Media & Apps Section */
.footer-social-apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-apps-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section-heading {
    margin: 0 0 20px 0;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, transparent 100%);
    border-radius: 2px;
}

.footer-social-icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.footer-social-icon-link:hover {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
    border-color: transparent;
}

.footer-social-icon-link:hover .footer-social-icon-img {
    filter: brightness(0) invert(1);
}

.footer-social-icon-img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-app-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-app-button-link {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-app-button-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.footer-app-button-img {
    display: block;
    height: 48px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-app-button-link:hover .footer-app-button-img {
    transform: scale(1.02);
}

.footer-apps-description {
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
    margin: 15px 0 0 0;
    max-width: 500px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 2px solid #e0e0e0;
    padding: 25px 0;
    background-color: #f9f9f9;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.footer-bottom-link {
    color: #666666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-bottom-link:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.05);
    text-decoration: none;
}

.footer-bottom-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.footer-menu-link {
    color: #666666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-menu-link:hover {
    color: #FF0000;
    background-color: rgba(255, 0, 0, 0.05);
    text-decoration: none;
}

.footer-pipe-separator {
    color: #cccccc;
    font-size: 13px;
    padding: 0 2px;
    user-select: none;
}

.footer-bottom-text {
    margin-top: 10px;
    text-align: center;
}

.footer-bottom-text p {
    margin: 0;
    color: #999999;
    font-size: 12px;
    line-height: 1.6;
}

/* Responsive Styles - Moved below */

@media (max-width: 1024px) {
    .footer-category-menus {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 25px;
    }
    
    .footer-social-apps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 60px;
    }
    
    .footer-top-bar {
        padding: 25px 0;
    }
    
    .footer-top-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-top-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer-copyright {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #e0e0e0;
        padding-top: 12px;
        margin-top: 12px;
    }
    
    .footer-top-right {
        width: 100%;
    }
    
    .footer-main {
        padding: 35px 0 30px 0;
    }
    
    .footer-category-menus {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .footer-social-apps {
        gap: 35px;
    }
    
    .footer-bottom-bar {
        padding: 20px 0;
    }
    
    .footer-bottom-container {
        padding: 0 15px;
    }
    
    .footer-bottom-links,
    .footer-bottom-menu {
        gap: 4px;
    }
    
    .footer-bottom-link,
    .footer-menu-link {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .footer-pipe-separator {
        font-size: 12px;
    }
    
    .footer-bottom-text p {
        font-size: 11px;
    }
    
    .footer-social-apps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-category-menus {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-category-heading {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-category-list a {
        font-size: 13px;
    }
    
    .footer-social-apps {
        gap: 30px;
    }
    
    .footer-social-icons-grid {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social-icon-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .footer-app-buttons-grid {
        align-items: center;
        gap: 10px;
    }
    
    .footer-app-button-img {
        height: 42px;
        max-width: 140px;
    }
    
    .footer-section-heading {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-apps-description {
        font-size: 12px;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .footer-bottom-links,
    .footer-bottom-menu {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-pipe-separator {
        display: none;
    }
    
    .footer-bottom-link,
    .footer-menu-link {
        font-size: 12px;
        padding: 6px 12px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        background-color: #ffffff;
    }
    
    .footer-bottom-link:hover,
    .footer-menu-link:hover {
        border-color: #FF0000;
        background-color: rgba(255, 0, 0, 0.05);
    }
    
    /* Sidebar Other News - Mobile */
    .widget-other-news-image {
        width: 70px;
        height: 55px;
    }
    
    .widget-other-news-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .widget-other-news-date {
        font-size: 10px;
    }
    
    .widget-other-news-link {
        gap: 8px;
    }
    
    .widget-other-news-list {
        gap: 12px;
    }
    
    .widget-other-news-item {
        padding-bottom: 12px;
    }
}
