/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

body.dark-mode {
    background-color: #1a1a1a;
    color: #fff;
}

/* =============================================
   TEK CONTAINER GENİŞLİĞİ — Tüm site: 1280px
   ============================================= */
.container,
.container-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: #000000;
    color: white;
    padding: 5px 0;
    font-size: 12px;
}

.top-bar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    justify-content: flex-start;
}

.top-bar-center {
    display: flex;
    justify-content: center;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 3px;
}

.social-icons a:hover {
    color: #dc3545;
}

.currency-info {
    display: flex;
    gap: 20px;
}

.currency-info span {
    font-weight: 500;
    font-size: 12px;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.weather-info i {
    color: #dc3545;
    font-size: 12px;
}

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

/* Header */
.header {
    background: #ee273a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

body.dark-mode .header {
    background: #dc3545;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

body.dark-mode .logo h1 {
    color: white;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-right: 50px;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.main-nav a:hover {
    color: #f8f9fa;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn i {
    font-size: 13px;
}

.login-btn:hover {
    background: white;
    color: #ee273a;
    border-color: white;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 8px 15px;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

body.dark-mode .search-box {
    background: #3d3d3d;
    border-color: #555;
}

.search-box:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-box:focus {
    border: none;
    outline: none;
}

.search-box i {
    color: white;
    font-size: 14px;
}

.search-box span {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    padding: 5px;
    width: 200px;
    color: #333;
}

body.dark-mode .search-box input {
    color: #fff;
}

.search-box input::placeholder {
    color: #666;
}

body.dark-mode .search-box input::placeholder {
    color: #aaa;
}

.search-box button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.dark-mode-toggle,
.mobile-menu-toggle,
.navbar-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
}

body.dark-mode .dark-mode-toggle,
body.dark-mode .mobile-menu-toggle,
body.dark-mode .navbar-toggle {
    color: #fff;
}

.dark-mode-toggle:hover,
.mobile-menu-toggle:hover,
.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

body.dark-mode .dark-mode-toggle:hover,
body.dark-mode .mobile-menu-toggle:hover,
body.dark-mode .navbar-toggle:hover {
    background: #3d3d3d;
    color: #dc3545;
}

.mobile-menu-toggle {
    display: none !important;
}

.navbar-toggle {
    display: none;
}

@media (max-width: 992px) {
    .navbar-toggle {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    padding-top: 80px;
}

body.dark-mode .mobile-menu {
    background: #2d2d2d;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu nav li {
    margin-bottom: 15px;
}

.mobile-menu nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #eee;
}

body.dark-mode .mobile-menu nav a {
    color: #fff;
    border-bottom-color: #444;
}

/* Responsive for mobile menu */
@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
        left: -280px;
    }

    .mobile-menu nav ul {
        padding: 15px;
    }

    .mobile-menu nav a {
        font-size: 15px;
        padding: 8px 0;
    }
}

/* Main Content */
.main-content {
    padding: 10px 0;
    min-height: calc(100vh - 200px);
}

.main-content > .container {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 15px;
    align-items: start;
}

.content-main-inner {
    display: grid !important;
    grid-template-columns: 4fr 1fr;
    gap: 15px;
    padding: 0 !important;
    width: 100%;
    min-width: 0;
}

/* Right-column (right-content.php) olmayan iç sayfalar */
.content-main-inner--single {
    grid-template-columns: 1fr !important;
}

.content-center {
    grid-column: 1;
    min-width: 0;
}

.content-right {
    grid-column: 2;
    min-width: 0;
}


body.dark-mode .ad-placeholder {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: #444;
    color: #aaa;
}

/* Breaking News Ticker */
.breaking-news-ticker {
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.dark-mode .breaking-news-ticker {
    background: #3d3d3d;
}

.ticker-container {
    display: flex;
    align-items: center;
    height: 40px;
}

.ticker-label {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker-content {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

body.dark-mode .ticker-content {
    background: #3d3d3d;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #f8f9fa;
}

body.dark-mode .ticker-item {
    background: #3d3d3d;
    color: white;
}

.ticker-item.active {
    opacity: 1;
}

.ticker-item span {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

body.dark-mode .ticker-item span {
    color: white;
}

.ticker-controls {
    display: flex;
    gap: 5px;
    padding: 0 10px;
    background: #f8f9fa;
}

body.dark-mode .ticker-controls {
    background: #3d3d3d;
}

.ticker-prev,
.ticker-next {
    background: rgba(220, 53, 69, 0.1);
    border: none;
    color: #dc3545;
    width: 25px;
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-prev:hover,
.ticker-next:hover {
    background: #dc3545;
    color: white;
}

/* Slider Section */
.slider-section {
    margin-bottom: 10px;
}

.slider-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 0;
}

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

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 20px 60px 20px;
}

.slide-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* Slider Navigation */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav button:hover {
    background: #dc3545;
    color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 0;
    z-index: 10;
    max-width: calc(100% - 40px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-dots::-webkit-scrollbar {
    display: none;
}

.dot {
    width: 25px;
    height: 25px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.dot:hover,
.dot.active {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.1);
}

.dot.active {
    background: #dc3545;
    border-color: #dc3545;
}

/* Responsive for slider dots and navigation */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
    }

    .dot {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .dot {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

/* Latest News */
.latest-news {
    background: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.latest-news:last-child {
    margin-bottom: 0;
}

body.dark-mode .latest-news {
    background: none;
}

.latest-news h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    background: #171717;
    border-radius: 0;
}

body.dark-mode .latest-news h2 {
    color: white;
    background: #dc3545;
}

/* News Slider Styles */
.news-slider-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.news-item.active {
    opacity: 1;
}

.news-item:hover {
    transform: none;
    box-shadow: none;
}

.news-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

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

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 18px;
}

.news-overlay h4 {
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 600;
    line-height: 1.3;
}

.news-overlay p {
    font-size: 12px;
    margin-bottom: 7px;
    opacity: 0.9;
    line-height: 1.3;
}

.news-time {
    font-size: 10px;
    opacity: 0.8;
    font-style: italic;
}

/* News Slider Controls */
.news-slider-controls {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.news-prev-btn,
.news-next-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 12px;
}

.news-prev-btn:hover,
.news-next-btn:hover {
    background: rgba(220, 53, 69, 0.9);
    transform: scale(1.1);
}

body.dark-mode .news-prev-btn,
body.dark-mode .news-next-btn {
    background: rgba(220, 53, 69, 0.8);
}

body.dark-mode .news-prev-btn:hover,
body.dark-mode .news-next-btn:hover {
    background: rgba(220, 53, 69, 1);
}

/* News Slider Indicators */
.news-slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.news-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.news-indicator.active {
    background: #dc3545;
    transform: scale(1.2);
}

body.dark-mode .news-indicator {
    background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .news-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

body.dark-mode .news-indicator.active {
    background: #dc3545;
}

/* Responsive for News Slider */
@media (max-width: 768px) {
    .news-slider-container {
        height: 170px;
    }

    .news-slider-indicators {
        bottom: 10px;
    }

    .news-indicator {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .news-slider-container {
        height: 140px;
    }

    .news-overlay {
        padding: 12px;
    }

    .news-overlay h4 {
        font-size: 12px;
    }

    .news-overlay p {
        font-size: 10px;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive for search overlay */
@media (max-width: 768px) {
    .search-overlay-content {
        padding: 30px;
        width: 95%;
    }

    .search-overlay-header h2 {
        font-size: 20px;
    }

    .search-overlay-input input {
        font-size: 15px;
        padding: 12px;
    }

    .search-submit {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .search-overlay-content {
        padding: 20px;
        width: 95%;
    }

    .search-overlay-header {
        margin-bottom: 20px;
    }

    .search-overlay-header h2 {
        font-size: 18px;
    }

    .search-overlay-input {
        margin-bottom: 20px;
    }

    .search-overlay-input input {
        padding: 10px;
        font-size: 14px;
    }

    .search-submit {
        padding: 10px 14px;
        font-size: 14px;
    }

    .search-suggestions h3 {
        font-size: 14px;
    }

    .tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

body.dark-mode .search-overlay-content {
    background: #2d2d2d;
    color: white;
}

.search-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-overlay-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

body.dark-mode .search-overlay-header h2 {
    color: white;
}

.search-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

body.dark-mode .search-close {
    color: #aaa;
}

.search-close:hover {
    color: #dc3545;
}

.search-overlay-input {
    display: flex;
    margin-bottom: 30px;
    border: 2px solid #ddd;
    border-radius: 0;
    overflow: hidden;
}

body.dark-mode .search-overlay-input {
    border-color: #555;
}

.search-overlay-input:focus-within {
    border-color: #dc3545;
}

.search-overlay-input input {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
    background: white;
    color: #333;
}

body.dark-mode .search-overlay-input input {
    background: #3d3d3d;
    color: white;
}

.search-overlay-input input::placeholder {
    color: #999;
}

body.dark-mode .search-overlay-input input::placeholder {
    color: #aaa;
}

.search-submit {
    background: #dc3545;
    border: none;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background: #c82333;
}

.search-suggestions h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

body.dark-mode .search-suggestions h3 {
    color: white;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f8f9fa;
    color: #333;
    padding: 8px 15px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

body.dark-mode .tag {
    background: #3d3d3d;
    color: white;
    border-color: #555;
}

.tag:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content > .container {
        display: block;
    }

    .ad-left,
    .ad-right {
        display: none;
    }

    .content-main-inner {
        padding: 0 !important;
        grid-template-columns: 4fr 1fr;
        /* Allow internal padding at smaller sizes */
    }

    .content-center {
        grid-column: 1;
    }

    .content-right {
        grid-column: 2;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .search-box input {
        width: 120px;
    }

    .top-bar .container {
        grid-template-columns: 1fr auto 1fr;
        gap: 6px;
    }

    .top-bar-left {
        justify-content: flex-start;
    }

    .top-bar-right {
        justify-content: flex-end;
    }

    .top-bar-center {
        justify-content: center;
    }

    .currency-info {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .main-content .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content-main-inner {
        grid-template-columns: 1fr;
    }

    .content-center,
    .content-right {
        grid-column: span 1;
    }

    .content-right {
        display: none;
    }

    .top-bar .container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 6px;
    }

    .top-bar-left {
        justify-content: flex-start;
        grid-column: 1;
        grid-row: 1;
    }

    .top-bar-right {
        justify-content: flex-end;
        grid-column: 2;
        grid-row: 1;
    }

    .top-bar-center {
        justify-content: center;
        grid-column: 1 / -1;
        grid-row: 2;
        background: #3c3b3b;
        padding: 5px;
        border-radius: 0;
    }

    .currency-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .currency-info span {
        font-size: 11px;
    }

    .social-icons {
        justify-content: center;
        gap: 6px;
    }

    .header .container {
        padding: 10px 15px;
    }

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

    .search-box input {
        width: 100px;
    }

    .slider {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h3 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .ticker-container {
        height: 40px;
    }

    .ticker-label {
        font-size: 11px;
        padding: 6px 12px;
    }

    .ticker-item {
        padding: 0 10px;
    }

    .ticker-item span {
        font-size: 12px;
        line-height: 1.4;
    }

    .ticker-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        padding: 10px;
    }

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

    .search-box {
        display: none;
    }

    .login-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .login-btn span {
        display: none;
    }

    .slider {
        height: 250px;
    }

    .slide-content h3 {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: 120px;
    }

    .top-bar .container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 6px;
    }

    .top-bar-left {
        grid-column: 1;
        grid-row: 1;
    }

    .top-bar-right {
        grid-column: 2;
        grid-row: 1;
    }

    .top-bar-center {
        grid-column: 1 / -1;
        grid-row: 2;
        background: #3c3b3b;
        padding: 4px;
    }

    .currency-info {
        gap: 6px;
    }

    .currency-info span {
        font-size: 10px;
        margin: 0 4px;
    }

    .social-icons a {
        font-size: 12px;
        padding: 2px;
    }

    .ticker-container {
        height: 45px;
    }

    .ticker-label {
        font-size: 10px;
        padding: 5px 8px;
    }

    .ticker-item {
        padding: 0 8px;
    }

    .ticker-item span {
        font-size: 11px;
        line-height: 1.5;
    }

    .ticker-controls {
        display: none;
    }
}

/* Navbar Menu */
.navbar-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

body.dark-mode .navbar-menu {
    background: #2d2d2d;
    color: white;
}

.navbar-menu.active {
    left: 0;
}

.navbar-menu-content {
    padding: 20px;
}

.navbar-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dc3545;
}

.navbar-menu-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

body.dark-mode .navbar-menu-header h2 {
    color: white;
}

.navbar-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

body.dark-mode .navbar-close {
    color: #aaa;
}

.navbar-close:hover {
    color: #dc3545;
}

.navbar-menu-nav ul {
    list-style: none;
    padding: 0;
}

.navbar-menu-nav li {
    margin-bottom: 5px;
}

.navbar-menu-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 12px 15px;
    display: block;
    border-radius: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

body.dark-mode .navbar-menu-nav a {
    color: white;
}

.navbar-menu-nav a:hover {
    background: #f8f9fa;
    color: #dc3545;
    border-left-color: #dc3545;
}

body.dark-mode .navbar-menu-nav a:hover {
    background: #3d3d3d;
    color: #dc3545;
}

.navbar-menu-nav a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Responsive for navbar menu */
@media (max-width: 480px) {
    .navbar-menu {
        width: 320px;
        left: -320px;
    }

    .navbar-menu-content {
        padding: 15px;
    }

    .navbar-menu-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .navbar-menu-header h2 {
        font-size: 18px;
    }

    .navbar-menu-nav a {
        font-size: 15px;
        padding: 10px 12px;
    }
}

/* News Categories Section */
.news-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

body.dark-mode .news-categories {
    background: #1a1a1a;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Responsive for category-grid */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
}

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

.category-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

body.dark-mode .category-card {
    background: transparent;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(220, 53, 69, 0.85);
    color: white;
}

.category-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.category-header h3 i {
    margin-right: 10px;
}

.category-more {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.category-more:hover {
    opacity: 0.8;
}

.category-news {
    padding: 20px;
    background: transparent;
}

.category-news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

body.dark-mode .category-news-item {
    border-bottom-color: #444;
}

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

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

.news-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

body.dark-mode .news-info h4 {
    color: white;
}

.news-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

body.dark-mode .news-info p {
    color: #aaa;
}

.news-info .news-time {
    font-size: 10px;
    opacity: 0.8;
    font-style: italic;
}

/* Popular News Section */
.popular-news {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dc3545;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

body.dark-mode .section-header h2 {
    color: white;
}

.section-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

body.dark-mode .nav-btn {
    border-color: #555;
    color: #aaa;
}

.nav-btn.active,
.nav-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.popular-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

/* Responsive for popular-news-grid */
@media (max-width: 992px) {
    .popular-news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: auto;
    }

    .popular-news-item.large {
        grid-row: span 1;
        grid-column: span 2;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .popular-news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .popular-news-item.large {
        grid-column: span 1;
        height: 250px;
    }

    .popular-news-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .popular-news-grid {
        gap: 10px;
    }

    .popular-news-item.large {
        height: 200px;
    }

    .popular-news-item {
        height: 180px;
    }

    .popular-news-item h3 {
        font-size: 16px;
    }

    .popular-news-item h4 {
        font-size: 13px;
    }

    .popular-news-item p {
        font-size: 12px;
    }
}

.popular-news-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popular-news-item:hover {
    transform: scale(1.02);
}

.popular-news-item.large {
    grid-row: span 2;
}

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

.popular-news-item .news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}

.popular-news-item.large .news-overlay {
    padding: 30px;
}

.news-category {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.popular-news-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.popular-news-item h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.popular-news-item p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.8;
}

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

/* Video News Section */
.video-news {
    padding: 40px 0;
    background: #f8f9fa;
}

body.dark-mode .video-news {
    background: #1a1a1a;
}

.section-more {
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.section-more:hover {
    color: #c82333;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Responsive for video-grid */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        gap: 10px;
    }

    .video-item {
        margin-bottom: 10px;
    }

    .video-info {
        padding: 15px;
    }

    .video-info h3 {
        font-size: 16px;
    }

    .video-info h4 {
        font-size: 13px;
    }

    .video-info p {
        font-size: 12px;
    }
}

.video-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-mode .video-item {
    background: #2d2d2d;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play:hover {
    background: #dc3545;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 0;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

body.dark-mode .video-info h3 {
    color: white;
}

.video-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

body.dark-mode .video-info h4 {
    color: white;
}

.video-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

body.dark-mode .video-info p {
    color: #aaa;
}

.video-time {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

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

.video-item.small .video-info {
    padding: 15px;
}



/* Featured News Items */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 200px;
}

.featured-item:hover {
    transform: translateY(-5px);
}

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

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

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

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
}

.featured-category {
    background: #dc3545;
    color: white;
    padding: 3px 6px;
    font-size: 10px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}

.featured-overlay h3 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
}

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

.featured-time {
    font-size: 10px;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .featured-item {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .featured-item {
        height: 200px;
    }

    .featured-overlay {
        padding: 10px;
    }

    .featured-overlay h3 {
        font-size: 16px;
    }

    .featured-overlay p {
        font-size: 12px;
    }
}

/* content-right ve content-center grid ile yönetiliyor — duplikat kaldırıldı */

.section-between {
    display: flex;
    justify-content: flex-start;
    margin: 30px 0 10px 0;
}

.section-between-inner {
    width: 100%;
    margin: 0;
    max-width: 100%;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: #dc3545;
    border-radius: 2px;
    margin-bottom: 20px;
}

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

/* Responsive for section-news-grid */
@media (max-width: 992px) {
    .section-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .section-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-news-item {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .section-news-grid {
        gap: 10px;
    }

    .section-news-item {
        height: 180px;
    }

    .section-news-overlay {
        padding: 12px;
    }

    .section-news-overlay h3 {
        font-size: 13px;
    }

    .section-news-overlay p {
        font-size: 10px;
    }
}

.section-news-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section-news-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.section-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
}

.section-news-category {
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 3px;
}

.section-news-overlay h3 {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
}

.section-news-overlay p {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-news-time {
    font-size: 10px;
    opacity: 0.8;
    font-style: italic;
}

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

/* Yeni Haberler Bölümü */
.new-news-section {
 /*   padding: 40px 0; */
    background: #f8f9fa;
   /* margin-top: 30px; */
}

body.dark-mode .new-news-section {
    background: #2d2d2d;
}

.new-news-content,
.category-news-content {
    width: 100%;
}

/* .ad-placeholder ana kuralı yukarıda tanımlı — bu duplicate kaldırıldı */

/* Banner Section */
.banner-section {
  /*  margin: 30px 0; */
}

.banner-container {
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.banner-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

.banner-container:hover .banner-image img {
    transform: scale(1.02);
}

/* Dark mode banner adjustments */
body.dark-mode .banner-container {
    background: #dc3545;
}

/* Responsive Design for Banner */
@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .banner-image {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .banner-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        height: 60px;
    }
}

/* Category News Section */
.category-news-section {
 /*   padding: 40px 0; */
    background: #f8f9fa;
  /*  margin-top: 30px; */
}

body.dark-mode .category-news-section {
    background: #2d2d2d;
}

.category-news-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.category-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.category-news-grid .category-news-item {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    display: block !important;
}

.category-news-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-news-item:hover {
    transform: translateY(-5px);
}

.category-news-item.large {
    height: 315px;
}

.category-news-item.small {
    height: 150px;
}

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

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

.category-news-item .news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
}

.category-news-item.small .news-overlay {
    padding: 15px;
}

.category-news-item .news-category {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}

.category-news-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.category-news-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.category-news-item p {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.4;
}

.category-news-item .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.8;
}

.category-news-item .news-time {
    font-style: italic;
}

.category-news-item .news-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-news-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}


/* Responsive Design for Category News */
@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .category-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-news-item.large {
        height: 250px;
    }

    .category-news-sidebar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }

    .category-news-item.small {
        height: 150px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .category-news-section {
        padding: 30px 0;
    }

    .category-news-item.large {
        height: 200px;
    }

    .category-news-sidebar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
    }

    .category-news-item.small {
        height: 120px;
    }

    .category-news-item .news-overlay {
        padding: 15px;
    }

    .category-news-item h3 {
        font-size: 16px;
    }

    .category-news-item h4 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-news-item.large {
        height: 180px;
    }

    .category-news-sidebar {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }

    .category-news-item.small {
        height: 100px;
    }

    .category-news-item .news-overlay {
        padding: 10px;
    }

    .category-news-item h3 {
        font-size: 14px;
    }

    .category-news-item h4 {
        font-size: 12px;
    }
}

/* Yazarlar Bölümü Stilleri */
.authors-section {
    padding: 60px 0;
    background: #fff;
    margin: 40px 0;
}

body.dark-mode .authors-section {
    background: #2d2d2d;
}

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

.authors-scroll-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    max-width: 100%;
}

.authors-scroll-wrapper {
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease;
    padding: 10px 0;
    max-width: 100%;
}

.author-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

body.dark-mode .author-item {
    background: #3d3d3d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.author-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body.dark-mode .author-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ee273a;
    margin-bottom: 15px;
}

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

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

.author-info {
    width: 100%;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

body.dark-mode .author-name {
    color: #fff;
}

.author-title {
    display: inline-block;
    background: #ee273a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
}

.author-bio {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .author-bio {
    color: #ccc;
}

.author-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    color: #888;
}

body.dark-mode .author-stats {
    color: #aaa;
}

.author-articles,
.author-followers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-articles i,
.author-followers i {
    color: #ee273a;
    font-size: 12px;
}

.authors-scroll-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.authors-prev,
.authors-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(238, 39, 58, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.dark-mode .authors-prev,
body.dark-mode .authors-next {
    background: rgba(220, 53, 69, 0.9);
}

.authors-prev:hover,
.authors-next:hover {
    background: #ee273a;
    transform: scale(1.1);
}

body.dark-mode .authors-prev:hover,
body.dark-mode .authors-next:hover {
    background: #dc3545;
}

.authors-prev {
    left: -20px;
}

.authors-next {
    right: -20px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .authors-content {
        max-width: 1000px;
    }

    .author-item {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 992px) {
    .authors-content {
        max-width: 900px;
    }

    .author-item {
        min-width: 240px;
        max-width: 240px;
        padding: 15px;
    }

    .author-image {
        width: 80px;
        height: 80px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-bio {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .authors-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .authors-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .authors-scroll-wrapper {
        gap: 20px;
    }

    .author-item {
        min-width: 220px;
        max-width: 220px;
        padding: 15px;
    }

    .author-image {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-bio {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }

    .author-stats {
        font-size: 10px;
        gap: 8px;
    }

    .authors-prev,
    .authors-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .authors-content {
        padding: 0 10px;
    }

    .authors-scroll-wrapper {
        gap: 15px;
    }

    .author-item {
        min-width: 200px;
        max-width: 200px;
        padding: 12px;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 10px;
        padding: 3px 8px;
    }

    .author-bio {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .author-stats {
        flex-direction: column;
        gap: 4px;
        font-size: 9px;
    }

    .authors-prev,
    .authors-next {
        width: 30px;
        height: 30px;
    }

    .authors-prev {
        left: -15px;
    }

    .authors-next {
        right: -15px;
    }
}

/* Yazarlar Sayfası Stilleri */
.writers-section {
    padding: 20px 0 60px 0;
    margin: 40px auto 80px auto;
    width: 100%;
}


.writers-section .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: center;
}

.writers-section .section-underline {
    width: 50px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.writers-grid {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.writers-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.writer-card {
    background: white;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    flex: 0 0 auto;
    width: 130px;
    margin: 5px;
    scroll-snap-align: start;
}

body.dark-mode .writer-card {
    background: #2d2d2d;
    border: 1px solid rgba(255,255,255,0.05);
}

.writer-card:hover {
    border-color: #cbd5e1;
}

body.dark-mode .writer-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.writer-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 2px solid #f8f9fa;
}

body.dark-mode .writer-image {
    border-color: #3d3d3d;
}

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

.writer-info {
    text-align: center;
}

.writer-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

body.dark-mode .writer-name {
    color: #fff;
}

.writer-profession {
    font-size: 11px;
    color: #777;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

body.dark-mode .writer-profession {
    color: #ccc;
}

.writer-card:hover .writer-name {
    color: #ee273a;
}

body.dark-mode .writer-card:hover .writer-name {
    color: #dc3545;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .writers-section {
        padding-left: 0;
        padding-right: 0;
    }

    .writers-grid {
        gap: 12px;
    }

    .writer-card {
        width: 130px;
        padding: 12px;
    }
}

@media (max-width: 992px) {
    .writers-section {
        padding-left: 0;
        padding-right: 0;
    }

    .writers-grid {
        gap: 10px;
    }

    .writer-card {
        width: 120px;
        padding: 10px;
    }

    .writer-image {
        width: 55px;
        height: 55px;
        margin-bottom: 8px;
    }

    .writer-name {
        font-size: 11px;
    }

    .writer-profession {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .writers-section {
        margin: 20px 0;
    }

    .writers-grid {
        gap: 8px;
        margin-top: 15px;
    }

    .writer-card {
        width: 100px;
        padding: 8px;
    }

    .writer-image {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .writer-name {
        font-size: 10px;
    }

    .writer-profession {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .writers-section {
        padding-left: 0;
        padding-right: 0;
    }

    .writers-grid {
        gap: 6px;
    }

    .writer-card {
        width: 80px;
        padding: 6px;
    }

    .writer-image {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }

    .writer-name {
        font-size: 9px;
    }

    .writer-profession {
        font-size: 7px;
    }
}

/* =============================================
   Detail / Yazarlar / Kategori Sayfa Stilleri
   (detay.php, yazarlar.php, kategori.php)
   ============================================= */

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

.breadcrumb a {
    color: #dc3545;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #c82333;
}

.breadcrumb i {
    color: #dc3545;
    font-size: 10px;
}

.news-detail-article {
    background: #fff;
    width: 100%;
    padding: 30px;
}

.article-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800;
    color: #111;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #666;
}

.meta-left i {
    color: #dc3545;
}

.meta-right {
    display: flex;
    justify-content: flex-end;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    color: #555;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #dc3545;
    color: #fff;
}

.article-featured-image {
    margin-top: 18px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    display: inline-block;
    margin-top: 8px;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 6px 10px;
    color: #666;
    font-size: 12px;
}

.article-content {
    margin-top: 18px;
    color: #333;
}

.article-content .lead-text {
    font-size: 16px;
}

.article-content p {
    margin-bottom: 14px;
    font-size: 14px;
}

.article-content h3 {
    margin: 22px 0 12px;
    font-size: 20px;
}

.article-content blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid #dc3545;
    background: #f8f9fa;
    color: #333;
}

.article-tags {
    margin-top: 28px;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.article-tags h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list a {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.tags-list a:hover {
    border-color: #dc3545;
    color: #fff;
    background: #dc3545;
}

.article-author-card {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0;
    border: 4px solid #dc3545;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 800;
}

.author-role {
    display: inline-block;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 13px;
    color: #666;
}

.author-social {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.author-social a:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: #fff;
}

.comments-section {
    margin-top: 36px;
}

.comments-header {
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.comments-header h3 {
    font-size: 18px;
    color: #111;
}

.comment-form {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 22px;
}

.comment-form h4 {
    font-size: 15px;
    margin-bottom: 14px;
}

.comment-form form input,
.comment-form form textarea {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

.comment-form form input:focus,
.comment-form form textarea:focus {
    border-color: #dc3545;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row input {
    flex: 1;
}

.comment-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 110px;
}

.submit-comment-btn {
    margin-top: 14px;
    background: #dc3545;
    border: none;
    color: #fff;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.submit-comment-btn:hover {
    background: #c82333;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    display: flex;
    gap: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

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

.comment-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.comment-body p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.reply-btn {
    border: 1px solid #dc3545;
    background: transparent;
    color: #dc3545;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.reply-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* Yazarlar Sayfası */
.yazarlar-header {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
}

.yazarlar-page-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin: 10px 0 10px;
}

.yazarlar-page-title i {
    color: #dc3545;
}

.yazarlar-page-desc {
    color: #666;
    font-size: 14px;
    margin: 0;
}

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

.yazar-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 18px;
}

.yazar-card:hover {
    border-color: #cbd5e1;
}

.yazar-photo {
    flex-shrink: 0;
}

.yazar-photo img {
    width: 92px;
    height: 92px;
    border: 4px solid #dc3545;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.yazar-body {
    flex: 1;
    min-width: 0;
}

.yazar-name {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
    color: #111;
}

.yazar-role {
    display: inline-block;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.yazar-bio {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 10px;
}

.yazar-stats {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.yazar-stats i {
    color: #dc3545;
}

.yazar-social {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.yazar-social a {
    width: 34px;
    height: 34px;
    background: #f1f1f1;
    border: 1px solid #eee;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.yazar-social a:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.yazar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.yazar-btn:hover {
    background: #c82333;
}

/* Kategori Sayfası */
.category-header-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    margin-bottom: 22px;
}

.category-info-card .breadcrumb {
    margin-bottom: 10px;
}

.category-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}

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

/* Responsive for category page */
@media (max-width: 768px) {
    .category-header-section {
        padding: 20px;
        margin-bottom: 18px;
    }

    .category-title {
        font-size: 24px;
    }

    .category-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-header-section {
        padding: 15px;
        margin-bottom: 15px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-description {
        font-size: 12px;
    }

    .category-news-list {
        margin-top: 15px;
    }
}

.category-news-list {
    width: 100%;
}

.category-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.cat-news-item.large {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
}

.cat-news-image {
    position: relative;
    height: 260px;
}

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

.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #dc3545;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 0;
}

.cat-news-content {
    padding: 18px;
}

.cat-news-content h2 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #111;
}

.cat-news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.cat-news-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #666;
    font-size: 13px;
    margin-bottom: 14px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 800;
    transition: background 0.2s ease;
}

.read-more-btn:hover {
    background: #c82333;
}

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

.cat-news-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
}

.card-image {
    position: relative;
    height: 140px;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
    font-size: 18px;
}

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

.card-body {
    padding: 14px;
}

.card-time {
    font-size: 12px;
    color: #666;
    display: inline-block;
    margin-bottom: 8px;
}

.card-body h3 {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #111;
}

.card-body p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.35;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-link {
    color: #dc3545;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: #c82333;
}

.pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.page-link:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.page-link.active {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.page-dots {
    color: #666;
    padding: 0 6px;
    font-size: 13px;
}

/* Responsive for Detail / Yazarlar / Kategori */
@media (max-width: 992px) {
    .article-title {
        font-size: 26px;
    }

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

    .article-author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto 15px;
    }

    .author-social {
        margin-left: 0;
        justify-content: center;
    }

    .comment-form {
        padding: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

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

    .yazarlar-header {
        padding: 20px;
    }

    .yazarlar-page-title {
        font-size: 26px;
    }

    .yazar-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .yazar-photo {
        margin: 0 auto 15px;
    }

    .yazar-social {
        justify-content: center;
    }

    .category-grid-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .news-detail-article {
        padding: 16px;
    }

    .article-title {
        font-size: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .yazarlar-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .yazarlar-header {
        padding: 15px;
    }

    .yazarlar-page-title {
        font-size: 22px;
    }

    .yazarlar-page-desc {
        font-size: 13px;
    }

    .yazar-card {
        padding: 12px;
        gap: 12px;
    }

    .yazar-photo img {
        width: 70px;
        height: 70px;
    }

    .yazar-name {
        font-size: 14px;
    }

    .yazar-role {
        font-size: 11px;
    }

    .yazar-bio {
        font-size: 12px;
    }

    .yazar-stats {
        font-size: 11px;
    }

    .yazar-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .cat-news-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Modern Footer Stiller
   ============================================= */
.footer {
    background: #ffffff;
    color: #333333;
    border-top: 1px solid #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-main {
    padding: 50px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #ee273a;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1;
}

.footer-logo h2 span {
    color: #ee273a;
}

.footer-logo p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #64748b;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #f1f5f9;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: #e1306c; }
.social-link.youtube:hover { background: #ff0000; }

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links a:hover {
    color: #ee273a;
    transform: translateX(6px);
}

/* Newsletter Section */
.footer-newsletter p {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    height: 44px;
    padding: 0 54px 0 16px;
    font-size: 13.5px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #f8fafc;
    color: #333333;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #ee273a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(238, 39, 58, 0.1);
}

.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 36px;
    height: 36px;
    background: #ee273a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #d61f31;
    transform: scale(1.05);
}

/* Contact Info Minimal */
.footer-contact-minimal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.footer-contact-minimal .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #64748b;
}

.footer-contact-minimal .contact-item i {
    color: #ee273a;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13.5px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ee273a;
}

/* =============================================
   Karanlık Mod Uyarlamaları (Dark Mode)
   ============================================= */
body.dark-mode .footer {
    background: #0f0f11;
    color: #e2e8f0;
    border-top-color: #1e1e24;
}

body.dark-mode .footer-section h3 {
    color: #ffffff;
}

body.dark-mode .footer-logo h2 {
    color: #ffffff;
}

body.dark-mode .footer-logo p,
body.dark-mode .social-link,
body.dark-mode .footer-links a,
body.dark-mode .footer-newsletter p,
body.dark-mode .footer-contact-minimal .contact-item,
body.dark-mode .footer-bottom-content p,
body.dark-mode .footer-bottom-links a {
    color: #94a3b8;
}

body.dark-mode .social-link {
    background: #1e1e24;
}

body.dark-mode .social-link:hover {
    color: #ffffff;
}

body.dark-mode .footer-links a:hover,
body.dark-mode .footer-bottom-links a:hover {
    color: #ee273a;
}

body.dark-mode .newsletter-form input {
    background: #1e1e24;
    border-color: #2d2d34;
    color: #ffffff;
}

body.dark-mode .newsletter-form input:focus {
    background: #15151a;
    border-color: #ee273a;
}

body.dark-mode .footer-contact-minimal {
    border-top-color: #1e1e24;
}

body.dark-mode .footer-bottom {
    background: #09090b;
    border-top-color: #1e1e24;
}

/* =============================================
   Responsive Tasarım
   ============================================= */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h3 {
        display: inline-block;
        width: auto;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-contact-minimal .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}