/* Genel */
:root {
    --bg: #f6f7fb;
    --ink: #0f172a;
    --muted: #4b5563;
    --accent: #e1062e;
    --header-bg: rgba(255, 255, 255, 0.96);
    --card-bg: #fff;
    --border-color: #eef1f4;
}



body {
    background: var(--bg);
    color: var(--ink);
}

.main-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
}

.news-card,
.flash-card,
.dropdown-menu,
.mobile-menu-sidebar {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.news-card h3,
.flash-title,
.dropdown-menu a {
    color: var(--ink);
}

.news-card .spot,
.flash-time,
.block-hint {
    color: var(--muted);
}

/* Google Translate Styling */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 13px !important;
}

/* Hide Top Banner */
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
    margin-top: 0 !important;
}

/* Hide Tooltips and Highlights */
.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Fix for iframe injection */
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* Custom Language Menu */
.lang-menu {
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.lang-menu a {
    color: var(--ink) !important;
    transition: background-color 0.2s;
}

.lang-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}



body {
    margin: 0;
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    letter-spacing: 0.01em;
    overflow-x: hidden;
    /* Prevent horizontal scroll from off-canvas menu */
}

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

/* HEADER GENEL */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
}

/* İÇERİĞİ ORTALAYAN GENEL CONTAINER */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* ÜST KIRMIZI BAR */
.top-bar {
    background: linear-gradient(115deg, #0b1221, #161f35);
    color: #e5e7eb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-left .top-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f9fafb;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-right: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .2s ease;
}

.top-left .top-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.top-right a {
    color: #e5e7eb;
    font-size: 12px;
    margin-left: 18px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    transition: color .2s ease, opacity .2s ease;
}

.top-right a:hover {
    color: #fff;
    opacity: 1;
}

/* ALT BEYAZ HEADER */
.main-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eef1f4;
    box-shadow: 0 18px 40px rgba(12, 20, 38, 0.06);
    backdrop-filter: blur(6px);
}

.main-header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 34px;
}

/* Logo */
.logo a {
    color: var(--ink);
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    gap: 6px;
}

.logo .mega {
    background: linear-gradient(135deg, #111827, #0b1221);
    color: #f9fafb;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo .haber {
    background: linear-gradient(135deg, #e1062e, #ff3756);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(225, 6, 46, 0.25);
}

/* ORTALANMIŞ ANA MENÜ */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, #e1062e, #ff8fa8);
    border-radius: 999px;
    opacity: 0;
    transform: translateY(4px) scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a:hover::after {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f9fafb;
    color: var(--accent);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

/* SAĞ TARAF İKONLAR */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 12px 24px rgba(12, 20, 38, 0.07);
    transition: all .2s ease;
}

.icon-btn:hover {
    color: var(--accent);
    border-color: rgba(225, 6, 46, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(12, 20, 38, 0.12);
}

/* Hamburger */
.hamburger {
    display: inline-block;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--accent);
    margin: 3px 0;
    border-radius: 2px;
}

.latest-flash {
    margin: 26px auto 10px;
}

.block-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0 4px 6px;
}

.block-hint {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.flash-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 4px 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.flash-track::-webkit-scrollbar {
    display: none;
}

.flash-card {
    min-width: 280px;
    max-width: 320px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(12, 20, 38, 0.06);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform .18s ease, box-shadow .18s ease;
}

.flash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(12, 20, 38, 0.12);
}

.flash-thumb {
    position: relative;
    aspect-ratio: 1/1;
    background: #eef1f6;
    overflow: hidden;
}

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

.flash-cat {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.flash-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flash-time {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.01em;
}

.flash-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

@media (max-width:640px) {
    .flash-card {
        min-width: 220px;
    }
}

/* Manset spotlight (dikey numara) */
.spotlight {
    padding-top: 10px;
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    background: #0f1320;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0f172a;
    box-shadow: 0 18px 32px rgba(12, 20, 38, 0.18);
}

.spotlight-nav {
    display: flex;
    flex-direction: column;
    background: #0b0f1a;
    padding: 12px 10px;
    gap: 8px;
}

.spot-btn {
    width: 100%;
    border: none;
    background: #0f172a;
    color: #9ca3af;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}

.spot-btn.active,
.spot-btn:hover {
    background: #e1062e;
    color: #fff;
    box-shadow: 0 10px 20px rgba(225, 6, 46, 0.3);
}

.spotlight-main {
    position: relative;
    min-height: 340px;
}

.spot-card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: #0f1320;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.spot-card.active {
    opacity: 1;
    pointer-events: auto;
}

.spot-media {
    background-size: cover;
    background-position: center;
}

.spot-info {
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.spot-cat {
    align-self: flex-start;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 999px;
}

.spot-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}

.spot-date {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

@media (max-width:960px) {
    .spotlight-inner {
        grid-template-columns: 1fr;
    }

    .spotlight-nav {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px;
        overflow-x: auto;
    }

    .spot-btn {
        width: auto;
        padding: 10px 14px;
    }

    .spot-card {
        position: relative;
        grid-template-columns: 1fr;
        min-height: 340px;
    }

    .spot-media {
        min-height: 220px;
    }
}

@media (max-width:600px) {
    .spot-info {
        padding: 22px;
    }

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










.container,
.page-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px;
}

.breaking-bar {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.breaking-bar .label {
    background: #e50019;
    padding: 5px 10px;
    margin-right: 10px;
    font-weight: bold;
}

/* Slider */
.slider {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.slide {
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide img {
    width: 100%;
    display: block;
}

.slide-info {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.cat-badge {
    display: inline-block;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.slide-info h2 {
    margin: 5px 0;
    font-size: 20px;
}

.slide-info p {
    font-size: 13px;
}

.slide-info .date {
    font-size: 11px;
    opacity: .8;
}

.block {
    margin: 25px 0;
}

.block-title {
    border-left: 4px solid #e50019;
    padding-left: 8px;
    margin-bottom: 10px;
}

/* Grid cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.news-card {
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.news-card .thumb {
    position: relative;
}

.news-card img {
    width: 100%;
    display: block;
}

.news-card .thumb .cat-badge {
    position: absolute;
    left: 8px;
    top: 8px;
}

.news-card .news-info {
    padding: 10px;
}

.news-card h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

/* Corrected margin */
.news-card .spot {
    font-size: 13px;
    color: var(--muted);
    height: 40px;
    overflow: hidden;
}

.news-card .date {
    font-size: 11px;
    color: var(--muted);
}

/* MOBILE MENU STYLES */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--card-bg);
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-logo img {
    max-height: 32px;
}

.mobile-logo span {
    font-weight: 800;
    font-size: 18px;
}

.mobile-logo .mega {
    color: #0f172a;
}

.mobile-logo .haber {
    color: #e1062e;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #64748b;
    display: flex;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #e1062e;
}

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

.mobile-search {
    margin-bottom: 25px;
}

.mobile-search form {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.mobile-search input {
    width: 100%;
    border: none;
    background: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
    color: var(--ink);
}

.mobile-search button {
    background: none;
    border: none;
    padding: 0 12px;
    color: #64748b;
    font-size: 20px;
}

/* Mobile Sections */
.mobile-section {
    margin-bottom: 25px;
}

.mobile-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-section-header span {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.mobile-section-header .line {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

/* Category List */
.mobile-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-cat-list.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-cat-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.mobile-cat-list a:hover {
    color: #e1062e;
    padding-left: 5px;
}

.mobile-cat-list a .dot {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: background 0.2s;
}

.mobile-cat-list a:hover .dot {
    background: #e1062e;
}

/* Apps Grid */
.mobile-apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.2s;
}

.app-item:hover {
    border-color: #e1062e;
    background: #fff5f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 6, 46, 0.1);
}

.app-item iconify-icon {
    font-size: 28px;
    color: #475569;
    transition: color 0.2s;
}

.app-item:hover iconify-icon {
    color: #e1062e;
}

.app-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

/* RESPONSIVE HEADER ADJUSTMENTS */
.hamburger {
    display: none;
}

/* Default hide */

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .search-wrapper {
        display: none;
    }

    /* Hide desktop search */
    .hamburger {
        display: inline-block;
    }

    .header-inner {
        padding: 10px 15px;
    }

    .main-header-inner {
        gap: 0;
    }

    .logo a {
        font-size: 18px;
    }

    .logo img {
        max-height: 32px !important;
    }

    .header-actions {
        gap: 0;
    }

    .icon-btn {
        border: none;
        box-shadow: none;
        background: transparent;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .icon-btn:hover {
        background: #f8fafc;
        transform: none;
        box-shadow: none;
    }
}

/* List */
.list .list-item {
    background: var(--card-bg);
    display: flex;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.list-thumb img {
    width: 160px;
    height: 100px;
    object-fit: cover;
}

.list-info {
    padding: 8px;
    flex: 1;
}

.list-info h3 {
    margin: 3px 0;
    font-size: 14px;
}

.list-info .date {
    font-size: 11px;
    color: #777;
}

/* Single article */
.single-article {
    background: var(--card-bg);
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.single-article h1 {
    margin-top: 10px;
}

.single-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.single-thumb img {
    width: 100%;
    margin-bottom: 10px;
}

.single-article .spot {
    font-weight: bold;
    margin-bottom: 10px;
}

.single-article .content {
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: var(--bg);
    color: var(--ink);
    padding: 24px 15px 28px;
    border-top: 1px solid #e4e7ed;
    margin-top: 30px;
}

.footer-top {
    max-width: 1140px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.footer-logo .mega {
    color: #2d3f52;
}

.footer-logo .haber {
    background: #e50019;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
}

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

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #3b404a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-links {
    max-width: 1140px;
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.footer-links a {
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
}

.footer-copy {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
}

/* Spotlight (dikey numarali) */
.spotlight {
    padding-top: 10px;
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    background: #0f1320;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0f172a;
    box-shadow: 0 18px 32px rgba(12, 20, 38, 0.18);
}

.spotlight-nav {
    display: flex;
    flex-direction: column;
    background: #0b0f1a;
    padding: 12px 10px;
    gap: 8px;
}

.spot-btn {
    width: 100%;
    border: none;
    background: #0f172a;
    color: #9ca3af;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}

.spot-btn.active,
.spot-btn:hover {
    background: #e1062e;
    color: #fff;
    box-shadow: 0 10px 20px rgba(225, 6, 46, 0.3);
}

.spotlight-main {
    position: relative;
    min-height: 340px;
}

.spot-card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: #0f1320;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.spot-card.active {
    opacity: 1;
    pointer-events: auto;
}

.spot-media {
    background-size: cover;
    background-position: center;
}

.spot-info {
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.spot-cat {
    align-self: flex-start;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 999px;
}

.spot-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}

.spot-date {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

@media (max-width:960px) {
    .spotlight-inner {
        grid-template-columns: 1fr;
    }

    .spotlight-nav {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px;
        overflow-x: auto;
    }

    .spot-btn {
        width: auto;
        padding: 10px 14px;
    }

    .spot-card {
        position: relative;
        grid-template-columns: 1fr;
        min-height: 340px;
    }

    .spot-media {
        min-height: 220px;
    }
}

@media (max-width:600px) {
    .spot-info {
        padding: 22px;
    }

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

/* Manset hero */
.manset-hero {
    margin: 22px auto 12px;
}

.manset-stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    background: #0f172a;
    box-shadow: 0 20px 40px rgba(12, 20, 38, 0.16);
}

.manset-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.manset-card.active {
    opacity: 1;
    pointer-events: auto;
}

.manset-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.manset-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.manset-cat {
    align-self: flex-start;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
}

.manset-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.manset-date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.manset-dots {
    margin-top: 10px;
    background: #e9edf2;
    border-radius: 6px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(36px, 1fr);
    overflow-x: auto;
    padding: 4px;
    gap: 4px;
    scrollbar-width: none;
}

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

.manset-dot {
    border: none;
    background: transparent;
    height: 34px;
    border-radius: 4px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: all .15s ease;
}

.manset-dot.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 16px rgba(225, 6, 46, 0.35);
}

.manset-dot:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width:740px) {
    .manset-stage {
        min-height: 360px;
    }

    .manset-title {
        font-size: 22px;
    }
}

/* Dortlu kare grid */
.quad-section {
    margin: 22px 0 8px;
}

.quad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.quad-card {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid #e9edf3;
    box-shadow: 0 12px 26px rgba(12, 20, 38, 0.08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.quad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(12, 20, 38, 0.12);
}

.quad-thumb {
    position: relative;
    aspect-ratio: 4/3;
    background: #eef1f6;
}

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

.quad-cat {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 10px;
    border-radius: 3px;
}

.quad-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quad-date {
    color: var(--muted);
    font-size: 13px;
}

.quad-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: var(--ink);
}

/* Split hero (genis + sag liste) */
.split-hero {
    margin: 20px 0 10px;
}

.split-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
    gap: 14px;
    align-items: start;
}

.split-main {
    position: relative;
    min-height: 420px;
    height: 420px;
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(12, 20, 38, 0.16);
}

.split-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

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

.split-link {
    display: block;
    position: relative;
    height: 100%;
    color: #fff;
}

.split-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.split-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-cat {
    align-self: flex-start;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Top Bar Styling */
.top-bar {
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Header Buttons (Theme & Lang) */


.lang-dropdown-btn {
    background: transparent;
    border: none;
    color: #fff;
    height: 34px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}



.lang-dropdown-btn:hover {
    opacity: 0.8;
}

/* Language Dropdown Menu */
.lang-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
    padding: 4px;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--ink);
}

.dropdown-menu img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.split-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.split-date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.split-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 420px;
    overflow: auto;
    padding-right: 6px;
}

.split-item {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 14px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid #e1e4ea;
    box-shadow: 0 10px 22px rgba(12, 20, 38, 0.08);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
    padding: 12px;
}

.split-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(12, 20, 38, 0.12);
}

.split-item-thumb {
    background: #eef1f6;
    width: 110px;
    height: 82px;
    border-radius: 4px;
    overflow: hidden;
}

.split-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.split-item-cat {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 6px 11px;
    border-radius: 4px;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.split-item-date {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.3;
}

.split-item-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.split-nav {
    margin-top: 10px;
    background: #eceff3;
    border-radius: 6px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(34px, 1fr);
    overflow-x: auto;
    gap: 4px;
    padding: 4px;
    scrollbar-width: none;
}

.split-nav::-webkit-scrollbar {
    display: none;
}

.split-dot {
    border: none;
    background: transparent;
    height: 34px;
    border-radius: 4px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: all .15s ease;
}

.split-dot.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 16px rgba(225, 6, 46, 0.35);
}

.split-dot:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width:950px) {
    .split-inner {
        grid-template-columns: 1fr;
    }

    .split-main {
        min-height: 360px;
    }

    .split-side {
        grid-template-columns: 1fr;
        max-height: none;
    }
}

@media (max-width:640px) {
    .split-item {
        grid-template-columns: 1fr 86px;
    }

    .split-item-thumb {
        width: 86px;
        height: 66px;
    }

    .split-title {
        font-size: 22px;
    }
}

/* Market bar */
.market-bar {
    margin: 14px 0 10px;
    background: #eef1f6;
    border: 1px solid #e1e4ea;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.market-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 10px;
    width: 100%;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid #e1e4ea;
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 8px 18px rgba(12, 20, 38, 0.05);
}

.market-item .icon {
    font-size: 18px;
    color: #6b7280;
}

.market-item .meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.market-item .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.market-item .numbers {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.market-item .value {
    font-size: 17px;
    font-weight: 800;
}

.market-item .change {
    font-size: 12px;
}

.market-item .change.up {
    color: #0ea244;
}

.market-item .change.down {
    color: #d11a2a;
}

.weather-box {
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    font-weight: 700;
}

.weather-select {
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #d4d9e1;
    background: var(--card-bg);
    font-weight: 600;
    color: var(--ink);
}

.weather-box .city {
    padding: 6px 10px;
    background: #dfe6ed;
    border-radius: 4px;
    font-size: 12px;
    color: #374151;
}

.weather-box .temp {
    font-size: 17px;
    color: var(--ink);
}

@media (max-width:900px) {
    .market-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-track {
        grid-auto-flow: row;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .weather-box {
        justify-content: flex-start;
    }
}

/* Reklam alanı */
.ad-banner {
    margin: 16px 0;
    text-align: center;
}

.ad-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ddd;
    display: block;
    margin: 0 auto;
}

/* Köşe yazarları */
.authors {
    margin: 18px 0 10px;
    background: var(--card-bg);
    border: 1px solid #e1e4ea;
    border-radius: 8px;
    padding: 14px 16px 16px;
    box-shadow: 0 10px 20px rgba(12, 20, 38, 0.06);
}

.authors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 2px solid #c9d3dd;
    padding-bottom: 8px;
}

.authors-header h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.author-nav {
    display: flex;
    gap: 6px;
}

.author-nav button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #c8d0da;
    background: var(--card-bg);
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    transition: all .15s ease;
}

.author-nav button:hover {
    background: #e8eef5;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.author-card {
    background: var(--card-bg);
    border: 1px solid #e2e6ec;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(12, 20, 38, 0.06);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef1f4;
    border: 2px solid #d7dee8;
    margin: 0 auto;
}

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

.author-name {
    font-weight: 700;
    color: var(--ink);
}

.author-date {
    font-size: 12px;
    color: #6b7280;
}

.author-title {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.4;
    min-height: 38px;
}

/* Galeriler */
.gallery-section {
    margin: 18px 0 10px;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #d5d9df;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.gallery-header h2 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.gallery-card a {
    color: inherit;
    display: block;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 6px;
}

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

.gallery-cat {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 3px;
    letter-spacing: 0.08em;
}

.gallery-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.gallery-icon.video {
    font-size: 16px;
}

.gallery-title {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

/* Legal/info pages */
.legal-page {
    background: var(--card-bg);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 20px rgba(12, 20, 38, 0.05);
    margin: 18px 0;
}

.legal-page h1 {
    margin-top: 0;
}

.legal-block {
    margin-bottom: 12px;
}

.legal-block h3 {
    margin: 0 0 4px;
}

.archive-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.archive-form input[type="date"] {
    padding: 6px 8px;
    border: 1px solid #d4d7dd;
    border-radius: 4px;
}

.archive-form button {
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    background: #0f172a;
    color: #fff;
    cursor: pointer;
}

.archive-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.archive-list a {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e6e9ef;
    border-radius: 6px;
    background: var(--card-bg);
}

.archive-date {
    color: #6b7280;
    font-size: 12px;
}

.archive-title {
    color: var(--ink);
    font-weight: 700;
}

.live-widgets {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.live-card {
    background: var(--card-bg);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 8px 16px rgba(12, 20, 38, 0.05);
}

.live-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.live-card .live-value {
    font-size: 20px;
    font-weight: 800;
}

.live-card .live-change.up {
    color: #0ea244;
}

.live-card .live-change.down {
    color: #d11a2a;
}

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

.weather-live .temp {
    font-size: 24px;
    font-weight: 800;
}

.weather-live .meta {
    font-size: 13px;
    color: #4b5563;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 960px;
    width: 90%;
    background: #0f172a;
    color: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 80;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

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

.cookie-actions button,
.cookie-actions a {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.cookie-accept {
    background: #22c55e;
    color: #fff;
}

.cookie-more {
    background: #fff;
    color: #0f172a;
}

@media (max-width:640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Side ads */
.side-ad {
    position: fixed;
    top: 140px;
    width: 160px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(236, 240, 245, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    z-index: 20;
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.side-ad::before {
    content: "Reklam";
    position: absolute;
    top: 10px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 999px;
}

.side-ad img {
    width: 94%;
    height: 94%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.side-ad-left {
    left: calc((100vw - 1140px)/2 - 180px);
}

.side-ad-right {
    right: calc((100vw - 1140px)/2 - 180px);
}

@media (max-width:1500px) {
    .side-ad {
        display: none;
    }
}

/* Sticky Side Banners */
.sticky-ad-left,
.sticky-ad-right {
    position: fixed;
    top: 220px;
    /* transform: translateY(-50%); REMOVED */
    z-index: 40;
    width: 160px;
    display: none;
}

.sticky-ad-left {
    right: calc(50% + 585px);
    /* 1140px container / 2 = 570px + 15px gap */
    left: auto;
}

.sticky-ad-right {
    left: calc(50% + 585px);
    right: auto;
}

.sticky-ad-item {
    margin-bottom: 0;
    display: none;
    /* Hidden by default for rotation */
    transition: transform 0.2s ease;
    animation: fadeIn 0.5s ease-in-out;
}

.sticky-ad-item.active {
    display: block;
}

.sticky-ad-item:hover {
    transform: scale(1.02);
}

.sticky-ad-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 1600px) {

    .sticky-ad-left,
    .sticky-ad-right {
        display: block;
    }
}

/* Market Bar Fix */
.market-bar {
    margin-top: -15px;
    margin-bottom: 15px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.market-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex: 1;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #eef1f6;
}

.market-item .icon {
    font-size: 18px;
}

.market-item .meta {
    display: flex;
    flex-direction: column;
}

.market-item .label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
}

.market-item .value {
    font-weight: 700;
    font-size: 13px;
    color: #0f172a;
}

.market-item .change {
    font-size: 11px;
    margin-left: 4px;
}

.market-item .change.up {
    color: #10b981;
}

.market-item .change.down {
    color: #ef4444;
}

.weather-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    border-left: 1px solid #e2e8f0;
}

.weather-select {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px;
    font-size: 12px;
}


/* Footer Styles */
.site-footer {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Social Icons - Dark Theme for Light Footer */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: #334155;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(225, 6, 46, 0.2);
}

/* Page Template Styles (Hero + Card) */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0 120px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb in Hero */
.page-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 99px;
    margin: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-hero .breadcrumb-item a {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.page-hero .breadcrumb-item a:hover {
    color: #fff;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "/";
}

.page-hero .breadcrumb-item.active {
    color: #94a3b8;
}

/* Abstract Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #3b82f6;
    bottom: -50px;
    left: 10%;
}

/* Content Wrapper */
.page-content-wrapper {
    margin-top: -60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

/* Content Card */
.content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    padding: 60px;
    position: relative;
}

/* Page Body Typography */
.page-body {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}

.page-body p {
    margin-bottom: 28px;
}

.page-body h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 50px 0 25px;
    letter-spacing: -0.01em;
}

.page-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 40px 0 20px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.page-body a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(225, 6, 46, 0.2);
    transition: all 0.2s;
}

.page-body a:hover {
    border-bottom-color: var(--accent);
    color: #b91c1c;
}

.page-body blockquote {
    border-left: 5px solid var(--accent);
    margin: 40px 0;
    padding: 20px 30px;
    background: #f8fafc;
    font-style: italic;
    font-size: 20px;
    color: #475569;
    border-radius: 0 12px 12px 0;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 100px;
    }

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

    .content-card {
        padding: 30px;
        border-radius: 16px;
    }

    .page-body {
        font-size: 16px;
    }

    .page-body h2 {
        font-size: 24px;
    }
}

/* Premium Contact Page Styles */
.contact-form .form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(225, 6, 46, 0.1);
    transform: translateY(-1px);
}

.contact-form .form-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    margin-bottom: 10px;
    font-weight: 700;
    display: block;
}

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

.contact-info-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 6, 46, 0.1);
    color: var(--accent);
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 10px rgba(225, 6, 46, 0.2);
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.social-link-modern {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    /* Background is set inline for brand colors */
    color: #fff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-link-modern:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(225, 6, 46, 0.2);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(225, 6, 46, 0.3);
    color: #fff;
}

/* Utility Classes */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.gap-1 {
    gap: 4px !important;
}

.gap-2 {
    gap: 8px !important;
}

.gap-3 {
    gap: 12px !important;
}

/* Responsive Utilities */
.d-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important;
    }
}

/* Footer Columns */
.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

/* Sticky Ads */
.sticky-ad-left,
.sticky-ad-right {
    position: fixed;
    top: 140px;
    width: 160px;
    height: 600px;
    z-index: 40;
}

.sticky-ad-left {
    left: calc(50% - 735px);
    /* 570px (half container) + 5px gap + 160px (ad width) */
}

.sticky-ad-right {
    right: auto;
    left: calc(50% + 575px);
    /* 570px (half container) + 5px gap */
}

.sticky-ad-item {
    display: none;
    width: 100%;
    height: 100%;
}

.sticky-ad-item.active {
    display: block;
}

.sticky-ad-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full image is visible */
    border-radius: 8px;
}

@media (max-width: 1480px) {

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

@media (min-width: 1481px) {
    .d-xxl-block {
        display: block !important;
    }
}