        /* ========================================
           CSS VARIABLES
        ======================================== */
        :root {
            /* Colors */
            --primary-dark: #191c4f;
            --primary-green: #2ecc71;
            --accent-red: #e74c3c;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --text-muted: #999999;
            --white: #ffffff;
            --border: #e5e5e5;
            --bg-light: #f8f8f8;

            /* Spacing */
            --container-max: 1400px;
            --gap-xs: 4px;
            --gap-sm: 8px;
            --gap-md: 16px;
            --gap-lg: 24px;
            --gap-xl: 32px;

            /* Typography */
            --font-primary: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;

            /* Font Size Scale (8-point modular system) - +30% */
            --fs-xs: 16px;      /* Badges, micro labels, timestamps */
            --fs-sm: 17px;      /* Captions, meta info, small text */
            --fs-base: 20px;    /* Body text, default readable size */
            --fs-md: 22px;      /* Nav items, emphasized body */
            --fs-lg: 25px;      /* H4, section labels, card subtitles */
            --fs-xl: 29px;      /* H3, card titles, subheadings */
            --fs-2xl: 34px;     /* H2, section titles */
            --fs-3xl: 42px;     /* H1, hero subtitles */
            --fs-4xl: 50px;     /* Hero headlines, major titles */
        }

        /* ========================================
           RESET & BASE
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, li {
            list-style: none;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

        /* ========================================
           TOP BAR (Dark)
        ======================================== */
        .top-bar {
            background: var(--primary-dark);
            padding: 12px 0;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        /* Finance Ticker */
        .finance-ticker {
            display: flex;
            align-items: center;
            gap: var(--gap-xl);
            flex: 1;
            justify-content: center;
            padding: 0 var(--gap-xl);
        }

        .finance-item {
            display: flex;
            align-items: center;
            gap: var(--gap-sm);
            color: var(--white);
        }

        .finance-icon {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .finance-icon.up {
            color: var(--primary-green);
        }

        .finance-icon.down {
            color: var(--accent-red);
        }

        .finance-icon svg {
            width: 18px;
            height: 18px;
        }

        .finance-label {
            font-size: var(--fs-xs);
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .finance-value {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--white);
        }

        .finance-change {
            font-size: var(--fs-xs);
            font-weight: 500;
        }

        .finance-change.up {
            color: var(--primary-green);
        }

        .finance-change.down {
            color: var(--accent-red);
        }

        /* Top Right Widgets */
        .top-right {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }

        /* Weather Widget */
        .weather-widget {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 16px;
            color: var(--white);
            position: relative;
            cursor: pointer;
            border-left: 1px solid rgba(255,255,255,0.1);
        }

        .weather-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Animated Sun with rays */
        .sun-icon {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .sun-icon svg {
            width: 40px;
            height: 40px;
        }

        .sun-center {
            fill: #f1c40f;
        }

        .sun-rays {
            fill: none;
            stroke: #f1c40f;
            stroke-width: 2;
            stroke-linecap: round;
            transform-origin: center;
            animation: sun-rays-rotate 8s linear infinite;
        }

        @keyframes sun-rays-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

        .weather-city-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .weather-city {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: var(--fs-sm);
            font-weight: 700;
            color: var(--white);
        }

        .weather-city svg {
            width: 12px;
            height: 12px;
            opacity: 0.7;
            transition: transform 0.2s ease;
        }

        .weather-widget.active .weather-city svg {
            transform: rotate(180deg);
        }

        .weather-temp {
            font-size: var(--fs-sm);
            font-weight: 500;
            color: rgba(255,255,255,0.8);
        }

        /* City Dropdown */
        .city-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            z-index: 100;
            display: none;
            min-width: 200px;
            overflow: hidden;
        }

        .weather-widget.active .city-dropdown {
            display: block;
        }

        .city-option {
            padding: 12px 16px;
            font-size: var(--fs-sm);
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: background 0.2s ease;
            border-bottom: 1px solid var(--border);
        }

        .city-option:last-child {
            border-bottom: none;
        }

        .city-option:hover {
            background: var(--bg-light);
        }

        .city-option.selected {
            background: var(--primary-green);
            color: var(--white);
        }

        /* Clock Widget */
        .clock-widget {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-green);
            padding: 8px 16px;
            font-size: var(--fs-lg);
            font-weight: 700;
            color: var(--white);
            min-width: 70px;
        }

        /* Imsak Widget */
        .imsak-widget {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 4px 16px;
            background: rgba(255,255,255,0.1);
        }

        .imsak-label {
            font-size: var(--fs-xs);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.5);
        }

        .imsak-time {
            font-size: var(--fs-sm);
            font-weight: 700;
            color: var(--white);
            min-width: 70px;
            text-align: center;
        }

        /* ========================================
           MAIN HEADER (White)
        ======================================== */
        .main-header {
            background: var(--white);
            padding: 0;
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 56px;
        }

        /* Main Navigation */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: flex;
            align-items: center;
            height: 56px;
            padding: 0 20px;
            color: var(--text-dark);
            font-size: var(--fs-sm);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
            border-bottom: 3px solid transparent;
        }

        .nav-menu a:hover {
            color: #e74c3c;
            border-bottom-color: #e74c3c;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0;
            border-left: 1px solid var(--border);
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            color: var(--text-dark);
            transition: all 0.2s ease;
            border-left: 1px solid var(--border);
        }

        .action-btn:first-child {
            border-left: none;
        }

        .action-btn:hover {
            background: var(--bg-light);
            color: var(--primary-green);
        }

        .action-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Hide mobile menu button in main header on desktop */
        .main-header .mobile-menu-btn {
            display: none;
        }

        /* ========================================
           BREAKING NEWS TICKER
        ======================================== */
        .ticker-band {
            background: #e74c3c;
            padding: 0;
        }

        .ticker-band-inner {
            display: flex;
            align-items: stretch;
        }

        .ticker-label {
            background: rgba(0,0,0,0.2);
            padding: 10px 20px;
            font-size: var(--fs-xs);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .ticker-dot {
            width: 8px;
            height: 8px;
            background: var(--white);
            border-radius: 50%;
            animation: ticker-blink 1s infinite;
        }

        @keyframes ticker-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .ticker-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .ticker-wrapper::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 30px;
            background: linear-gradient(90deg, #e74c3c 0%, transparent 100%);
            z-index: 2;
        }

        .ticker-wrapper::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 30px;
            background: linear-gradient(90deg, transparent 0%, #e74c3c 100%);
            z-index: 2;
        }

        .ticker-track {
            display: flex;
            animation: ticker-scroll 40s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 30px;
            white-space: nowrap;
            color: var(--white);
            font-size: var(--fs-sm);
        }

        .ticker-item::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--white);
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.6;
        }

        .ticker-item a {
            color: inherit;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .ticker-item a:hover {
            opacity: 0.8;
        }

        .ticker-time {
            font-size: var(--fs-xs);
            color: rgba(255,255,255,0.7);
        }

        /* Ticker Responsive */
        @media (max-width: 768px) {
            .ticker-label {
                padding: 8px 12px;
                font-size: var(--fs-xs);
            }

            .ticker-item {
                font-size: var(--fs-sm);
                padding: 8px 20px;
            }
        }

        @media (max-width: 480px) {
            .ticker-item {
                font-size: var(--fs-xs);
                padding: 8px 16px;
            }

            .ticker-label {
                padding: 8px 10px;
                font-size: var(--fs-xs);
                letter-spacing: 0.5px;
            }
        }

        /* ========================================
           HOT NEWS SLIDER (Sıcak Gelişmeler)
        ======================================== */
        .hot-news-section {
            background: var(--white);
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
        }

        .hot-news-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

        .hot-news-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .hot-news-icon {
            width: 28px;
            height: 28px;
        }

        .hot-news-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--text-dark);
        }

        .hot-news-swiper {
            overflow: visible;
        }

        .hot-news-swiper .swiper-slide {
            width: 280px;
        }

        .hot-news-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .hot-news-image {
            position: relative;
            width: 100%;
            aspect-ratio: 16/10;
            background: #9ca3af;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .hot-news-badge {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            align-items: center;
            gap: 4px;
            background: #fbbf24;
            color: #1a1a1a;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: var(--fs-sm);
            font-weight: 600;
        }

        .hot-news-badge svg {
            width: 14px;
            height: 14px;
        }

        .hot-news-card-title {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-news-card:hover .hot-news-card-title {
            color: #e74c3c;
        }

        /* Hot News Pagination (mobile only) */
        .hot-news-pagination {
            display: none;
            text-align: center;
            margin-top: 16px;
        }

        .hot-news-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: #ddd;
            opacity: 1;
            margin: 0 4px;
        }

        .hot-news-pagination .swiper-pagination-bullet-active {
            background: var(--accent-red);
        }

        /* Hot News Swiper Responsive */
        @media (max-width: 768px) {
            .hot-news-pagination {
                display: block;
            }
            .hot-news-section {
                padding: 20px 0;
            }

            .hot-news-container {
                padding: 0;
            }

            .hot-news-header {
                padding: 0 16px;
            }

            .hot-news-swiper .swiper-slide {
                width: calc(100% - 32px);
            }

            .hot-news-title {
                font-size: var(--fs-lg);
            }
        }

        @media (max-width: 480px) {
            .hot-news-swiper .swiper-slide {
                width: calc(100% - 32px);
            }

            .hot-news-card-title {
                font-size: var(--fs-base);
            }

            .hot-news-badge {
                font-size: var(--fs-xs);
                padding: 3px 8px;
            }
        }

        /* ========================================
           HEADLINE SLIDER (Manşet)
        ======================================== */
        .headline-section {
            background: var(--white);
            padding: 0;
        }

        .headline-container {
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .headline-slider {
            position: relative;
            overflow: hidden;
        }

        .headline-slide {
            display: none;
        }

        .headline-slide.active {
            display: block;
        }

        .headline-content {
            display: flex;
            background: #1a1a2e;
            min-height: 400px;
        }

        .headline-image {
            flex: 0 0 50%;
            position: relative;
            overflow: hidden;
        }

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

        .headline-image-placeholder {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        }

        .headline-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 60px;
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
        }

        .headline-title {
            font-size: var(--fs-4xl);
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .headline-subtitle {
            font-size: var(--fs-xl);
            color: #fbbf24;
            line-height: 1.5;
        }

        /* Headline Pagination */
        .headline-pagination {
            display: flex;
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .headline-page {
            flex: 1;
            padding: 14px 8px;
            text-align: center;
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            background: transparent;
            border: none;
            border-right: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }

        .headline-page:last-child {
            border-right: none;
        }

        .headline-page.active {
            background: #e74c3c;
            color: var(--white);
        }

        /* Headline Responsive */
        @media (max-width: 1024px) {
            .headline-content {
                min-height: 350px;
            }

            .headline-title {
                font-size: var(--fs-3xl);
            }

            .headline-subtitle {
                font-size: var(--fs-lg);
            }

            .headline-text {
                padding: 30px 40px;
            }
        }

        @media (max-width: 768px) {
            .headline-content {
                flex-direction: column;
                min-height: auto;
            }

            .headline-image {
                flex: none;
                height: 250px;
            }

            .headline-image-placeholder {
                min-height: 250px;
            }

            .headline-text {
                padding: 24px 20px;
            }

            .headline-title {
                font-size: var(--fs-2xl);
            }

            .headline-subtitle {
                font-size: var(--fs-md);
            }

            .headline-page {
                padding: 10px 4px;
                font-size: var(--fs-sm);
            }

            /* Hide some pagination numbers on mobile */
            .headline-page:nth-child(n+8):nth-child(-n+14) {
                display: none;
            }
        }

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

            .headline-image-placeholder {
                min-height: 200px;
            }

            .headline-title {
                font-size: var(--fs-xl);
            }

            .headline-subtitle {
                font-size: var(--fs-base);
            }

            .headline-page {
                padding: 8px 2px;
                font-size: var(--fs-xs);
            }

            /* Hide more pagination numbers on small mobile */
            .headline-page:nth-child(n+6):nth-child(-n+16) {
                display: none;
            }
        }

        /* ========================================
           FOTO HABER SECTION
        ======================================== */
        .foto-haber-section {
            background: #f0f0f0;
            padding: 24px 0;
        }

        .foto-haber-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

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

        .foto-haber-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .foto-haber-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .foto-haber-image {
            position: relative;
            aspect-ratio: 16/10;
            background: #888;
            overflow: hidden;
        }

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

        .foto-haber-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #1a1a1a;
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 16px;
            letter-spacing: 0.3px;
        }

        .foto-haber-content {
            padding: 20px;
        }

        .foto-haber-title {
            font-size: var(--fs-lg);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Foto Haber Responsive */
        @media (max-width: 1024px) {
            .foto-haber-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .foto-haber-title {
                font-size: var(--fs-md);
            }

            .foto-haber-content {
                padding: 16px;
            }
        }

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

            .foto-haber-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .foto-haber-card {
                display: flex;
                flex-direction: row;
            }

            .foto-haber-image {
                flex: 0 0 140px;
                aspect-ratio: 1/1;
            }

            .foto-haber-content {
                flex: 1;
                display: flex;
                align-items: center;
                padding: 16px;
            }

            .foto-haber-title {
                font-size: var(--fs-base);
                -webkit-line-clamp: 3;
            }

            .foto-haber-badge {
                top: 8px;
                left: 8px;
                font-size: 10px;
                padding: 4px 8px;
                border-radius: 12px;
            }
        }

        @media (max-width: 480px) {
            .foto-haber-image {
                flex: 0 0 120px;
            }

            .foto-haber-content {
                padding: 12px;
            }

            .foto-haber-title {
                font-size: var(--fs-base);
            }
        }

        /* ========================================
           MANSET WITH SIDEBAR SECTION
        ======================================== */
        .manset-sidebar-section {
            background: #f0f0f0;
            padding: 0 0 24px 0;
        }

        .manset-sidebar-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

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

        /* Left - Big Manset */
        .manset-big {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
        }

        .manset-big-slide {
            display: none;
        }

        .manset-big-slide.active {
            display: block;
        }

        .manset-big-link {
            display: block;
            position: relative;
        }

        .manset-big-image {
            position: relative;
            aspect-ratio: 16/9;
            background: #1a1a2e;
            overflow: hidden;
        }

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

        .manset-big-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            padding-left: 50%;
        }

        .manset-big-badges {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .manset-badge-foto {
            background: #22c55e;
            color: var(--white);
            font-size: var(--fs-sm);
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .manset-badge-time {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
            color: var(--white);
            font-size: var(--fs-sm);
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .manset-badge-time svg {
            width: 14px;
            height: 14px;
        }

        .manset-big-title {
            font-size: var(--fs-4xl);
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .manset-big-subtitle {
            font-size: var(--fs-lg);
            font-weight: 500;
            color: #fbbf24;
            line-height: 1.4;
        }

        /* Manset Pagination */
        .manset-pagination {
            display: flex;
            background: var(--white);
            border-top: 1px solid var(--border);
        }

        .manset-page {
            flex: 1;
            padding: 12px 6px;
            text-align: center;
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            background: transparent;
            border: none;
            border-right: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }

        .manset-page:last-child {
            border-right: none;
        }

        .manset-page.active {
            background: #e74c3c;
            color: var(--white);
        }

        /* Right - Sidebar Cards */
        .manset-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .sidebar-card-image {
            aspect-ratio: 16/10;
            background: #888;
            overflow: hidden;
        }

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

        .sidebar-card-content {
            padding: 16px;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .sidebar-card-title {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Manset Sidebar Responsive */
        @media (max-width: 1200px) {
            .manset-sidebar-grid {
                grid-template-columns: 1fr 280px;
            }

            .manset-big-title {
                font-size: var(--fs-3xl);
            }

            .manset-big-subtitle {
                font-size: var(--fs-md);
            }

            .manset-big-overlay {
                padding: 30px;
                padding-left: 45%;
            }
        }

        @media (max-width: 1024px) {
            .manset-sidebar-grid {
                grid-template-columns: 1fr 240px;
                gap: 16px;
            }

            .manset-big-title {
                font-size: var(--fs-2xl);
            }

            .manset-big-subtitle {
                font-size: var(--fs-base);
            }

            .manset-big-overlay {
                padding: 24px;
                padding-left: 40%;
            }

            .manset-page {
                font-size: var(--fs-sm);
                padding: 10px 4px;
            }

            .sidebar-card-title {
                font-size: var(--fs-base);
            }
        }

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

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

            .manset-big-overlay {
                padding: 20px;
                padding-left: 20px;
                background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
                justify-content: flex-end;
            }

            .manset-big-title {
                font-size: var(--fs-xl);
            }

            .manset-big-subtitle {
                font-size: var(--fs-base);
            }

            .manset-big-badges {
                margin-bottom: 12px;
            }

            .manset-page {
                font-size: var(--fs-xs);
                padding: 8px 2px;
            }

            /* Hide some pagination on mobile */
            .manset-page:nth-child(n+8):nth-child(-n+14) {
                display: none;
            }

            .manset-sidebar {
                flex-direction: row;
            }

            .sidebar-card {
                flex: 1;
            }

            .sidebar-card-image {
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 480px) {
            .manset-big-title {
                font-size: var(--fs-lg);
            }

            .manset-big-subtitle {
                font-size: var(--fs-sm);
            }

            .manset-badge-foto,
            .manset-badge-time {
                font-size: var(--fs-xs);
                padding: 4px 10px;
            }

            .manset-page:nth-child(n+6):nth-child(-n+16) {
                display: none;
            }

            .sidebar-card-content {
                padding: 12px;
            }

            .sidebar-card-title {
                font-size: var(--fs-sm);
            }
        }

        /* ========================================
           VIDEO GALERI SECTION
        ======================================== */
        .video-galeri-section {
            background: #2d2d2d;
            padding: 30px 0 40px;
        }

        .video-galeri-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

        .video-galeri-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .video-galeri-icon {
            width: 32px;
            height: 32px;
            background: #e74c3c;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-galeri-icon svg {
            width: 18px;
            height: 18px;
            color: var(--white);
        }

        .video-galeri-title {
            font-size: var(--fs-2xl);
            font-weight: 700;
            color: #e74c3c;
        }

        /* Video Featured Grid */
        .video-featured-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 20px;
            margin-bottom: 30px;
        }

        /* Big Video Card */
        .video-big-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
        }

        .video-big-image {
            position: relative;
            aspect-ratio: 16/9;
            background: #888;
            overflow: hidden;
        }

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

        .video-big-badges {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            gap: 10px;
        }

        .video-badge-ozel {
            background: #e74c3c;
            color: var(--white);
            font-size: var(--fs-xs);
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .video-badge-video {
            background: #1a1a1a;
            color: var(--white);
            font-size: var(--fs-xs);
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .video-badge-video svg {
            width: 10px;
            height: 10px;
            fill: currentColor;
        }

        .video-big-content {
            padding: 16px 20px 20px;
        }

        .video-big-time {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f0f0f0;
            color: #e74c3c;
            font-size: var(--fs-sm);
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .video-big-time svg {
            width: 14px;
            height: 14px;
        }

        .video-big-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
        }

        /* Video Sidebar List */
        .video-sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .video-sidebar-item {
            display: flex;
            gap: 14px;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            padding: 10px;
        }

        .video-sidebar-image {
            position: relative;
            flex: 0 0 140px;
            aspect-ratio: 16/10;
            background: #888;
            border-radius: 8px;
            overflow: hidden;
        }

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

        .video-play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 36px;
            height: 36px;
            background: rgba(0,0,0,0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-play-icon svg {
            width: 14px;
            height: 14px;
            fill: var(--white);
            margin-left: 2px;
        }

        .video-sidebar-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .video-sidebar-title {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-sidebar-time {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: var(--fs-sm);
            color: var(--text-muted);
        }

        .video-sidebar-time svg {
            width: 14px;
            height: 14px;
        }

        /* Video Tabs */
        .video-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .video-tab {
            padding: 12px 24px;
            font-size: var(--fs-base);
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .video-tab.active {
            background: #1a1a1a;
            color: var(--white);
        }

        .video-tab:not(.active) {
            background: #444;
            color: #ccc;
        }

        .video-tab:hover:not(.active) {
            background: #555;
        }

        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .video-grid-card {
            background: transparent;
        }

        .video-grid-image {
            position: relative;
            aspect-ratio: 16/10;
            background: #888;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 12px;
        }

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

        .video-grid-title {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--white);
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-grid-time {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: var(--fs-sm);
            color: #999;
        }

        .video-grid-time svg {
            width: 14px;
            height: 14px;
        }

        /* Video Galeri Responsive */
        @media (max-width: 1200px) {
            .video-featured-grid {
                grid-template-columns: 1fr 320px;
            }
        }

        @media (max-width: 1024px) {
            .video-featured-grid {
                grid-template-columns: 1fr 280px;
            }

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

            .video-sidebar-image {
                flex: 0 0 120px;
            }
        }

        @media (max-width: 768px) {
            .video-galeri-section {
                padding: 24px 0 30px;
            }

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

            .video-sidebar-list {
                flex-direction: row;
                overflow-x: auto;
                gap: 12px;
                padding-bottom: 10px;
            }

            .video-sidebar-item {
                flex: 0 0 280px;
                flex-direction: column;
                padding: 0;
            }

            .video-sidebar-image {
                flex: none;
                aspect-ratio: 16/9;
                border-radius: 10px 10px 0 0;
            }

            .video-sidebar-content {
                padding: 12px;
            }

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

            .video-tabs {
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            .video-galeri-title {
                font-size: var(--fs-xl);
            }

            .video-big-title {
                font-size: var(--fs-md);
            }

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

            .video-grid-card {
                display: flex;
                gap: 12px;
            }

            .video-grid-image {
                flex: 0 0 140px;
                margin-bottom: 0;
            }

            .video-grid-content {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        /* ========================================
           FOTO GALERI SLIDER SECTION
        ======================================== */
        .foto-slider-section {
            background: var(--white);
            padding: 30px 0;
        }

        .foto-slider-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--gap-md);
        }

        .foto-slider-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 24px;
        }

        /* Left - Big Slider */
        .foto-slider-main {
            position: relative;
            background: linear-gradient(135deg, #0f1628 0%, #1a2642 100%);
            border-radius: 16px;
            overflow: hidden;
            min-height: 480px;
        }

        .foto-slider-slide {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .foto-slider-slide.active {
            display: flex;
        }

        .foto-slider-content {
            flex: 0 0 45%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .foto-slider-hashtag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #3b82f6;
            font-size: var(--fs-base);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .foto-slider-hashtag svg {
            width: 20px;
            height: 20px;
        }

        .foto-slider-title {
            font-size: var(--fs-4xl);
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
        }

        .foto-slider-image {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 60%;
            z-index: 1;
        }

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

        .foto-slider-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 50%;
            background: linear-gradient(to right, #0f1628 0%, transparent 100%);
            z-index: 1;
        }

        /* Slider Navigation */
        .foto-slider-nav {
            position: absolute;
            bottom: 30px;
            left: 40px;
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 10;
        }

        .foto-slider-arrows {
            display: flex;
            gap: 8px;
        }

        .foto-slider-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            background: transparent;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .foto-slider-arrow:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        .foto-slider-arrow svg {
            width: 18px;
            height: 18px;
        }

        .foto-slider-thumbs {
            display: flex;
            gap: 10px;
        }

        .foto-slider-thumb {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.6;
            transition: all 0.2s;
        }

        .foto-slider-thumb.active {
            border-color: #3b82f6;
            opacity: 1;
        }

        .foto-slider-thumb:hover {
            opacity: 1;
        }

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

        /* Right Sidebar */
        .foto-slider-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* News Cards with Stats */
        .news-stat-card {
            display: flex;
            gap: 14px;
            background: var(--white);
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .news-stat-image {
            flex: 0 0 120px;
            aspect-ratio: 4/3;
            background: #888;
            border-radius: 8px;
            overflow: hidden;
        }

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

        .news-stat-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-stat-title {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-stat-icons {
            display: flex;
            gap: 12px;
        }

        .news-stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: var(--fs-sm);
            color: var(--text-muted);
        }

        .news-stat-item svg {
            width: 14px;
            height: 14px;
        }

        .news-stat-item.twitter svg {
            color: #1DA1F2;
        }

        .news-stat-item.youtube svg {
            color: #FF0000;
        }

        /* Nöbetçi Eczane Widget */
        .nobetci-eczane-widget {
            background: #e74c3c;
            border-radius: 12px;
            padding: 20px;
            margin-top: auto;
        }

        .nobetci-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .nobetci-title {
            font-size: var(--fs-lg);
            font-weight: 700;
            color: var(--white);
        }

        .nobetci-logo {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--fs-2xl);
            font-weight: 900;
            color: #e74c3c;
        }

        .nobetci-form {
            display: flex;
            gap: 10px;
        }

        .nobetci-select-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nobetci-label {
            font-size: var(--fs-xs);
            color: rgba(255,255,255,0.8);
        }

        .nobetci-select {
            padding: 12px 14px;
            border: none;
            border-radius: 8px;
            background: var(--white);
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .nobetci-search {
            width: 50px;
            height: auto;
            align-self: flex-end;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nobetci-search svg {
            width: 20px;
            height: 20px;
            color: var(--text-dark);
        }

        /* Foto Slider Responsive */
        @media (max-width: 1200px) {
            .foto-slider-grid {
                grid-template-columns: 1fr 320px;
            }

            .foto-slider-title {
                font-size: var(--fs-3xl);
            }

            .foto-slider-thumb {
                width: 70px;
                height: 52px;
            }
        }

        @media (max-width: 1024px) {
            .foto-slider-grid {
                grid-template-columns: 1fr;
            }

            .foto-slider-main {
                min-height: 400px;
            }

            .foto-slider-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .news-stat-card {
                flex: 1 1 calc(50% - 8px);
            }

            .nobetci-eczane-widget {
                flex: 1 1 100%;
                margin-top: 0;
            }
        }

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

            .foto-slider-main {
                min-height: 350px;
            }

            .foto-slider-content {
                flex: 0 0 60%;
                padding: 24px;
            }

            .foto-slider-title {
                font-size: var(--fs-2xl);
            }

            .foto-slider-image {
                width: 50%;
            }

            .foto-slider-nav {
                left: 24px;
                bottom: 20px;
            }

            .foto-slider-thumbs {
                display: none;
            }

            .news-stat-card {
                flex: 1 1 100%;
            }

            .nobetci-form {
                flex-wrap: wrap;
            }

            .nobetci-select-wrapper {
                flex: 1 1 calc(50% - 30px);
            }

            .nobetci-search {
                flex: 0 0 50px;
            }
        }

        @media (max-width: 480px) {
            .foto-slider-main {
                min-height: 300px;
            }

            .foto-slider-content {
                flex: 1;
                padding: 20px;
            }

            .foto-slider-title {
                font-size: var(--fs-xl);
            }

            .foto-slider-image {
                width: 40%;
                opacity: 0.5;
            }

            .foto-slider-arrow {
                width: 36px;
                height: 36px;
            }
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1200px) {
            .finance-ticker {
                gap: var(--gap-lg);
            }

            .nav-menu a {
                padding: 0 14px;
                font-size: var(--fs-sm);
            }
        }

        @media (max-width: 1024px) {
            .finance-ticker {
                display: none;
            }

            .nav-menu a {
                padding: 0 12px;
            }

            .imsak-widget {
                display: none;
            }
        }

        /* Note: Mobile responsive rules moved to mobile-specific section below */

        /* ========================================
           MOBILE MENU
        ======================================== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 85%;
            max-width: 360px;
            height: 100%;
            background: var(--white);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        }

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

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

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

        .mobile-menu-title {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        .mobile-menu-close {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--text-muted);
            transition: all 0.2s ease;
        }

        .mobile-menu-close:hover {
            background: var(--bg-light);
            color: var(--text-dark);
        }

        .mobile-menu-close svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Social Icons */
        .mobile-social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px;
            border-bottom: 1px solid var(--border);
        }

        .mobile-social-icons .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 2px solid;
            transition: all 0.2s ease;
        }

        .mobile-social-icons .social-icon svg {
            width: 18px;
            height: 18px;
        }

        .mobile-social-icons .social-icon.facebook {
            border-color: #1877f2;
            color: #1877f2;
        }

        .mobile-social-icons .social-icon.twitter {
            border-color: #000;
            color: #000;
        }

        .mobile-social-icons .social-icon.instagram {
            border-color: #c13584;
            color: #c13584;
        }

        .mobile-social-icons .social-icon.youtube {
            border-color: #ff0000;
            color: #ff0000;
        }

        .mobile-social-icons .social-icon.whatsapp {
            border-color: #25d366;
            color: #25d366;
        }

        .mobile-social-icons .social-icon.tiktok {
            border-color: #000;
            color: #000;
        }

        .mobile-social-icons .social-icon.threads {
            border-color: #000;
            color: #000;
        }

        .mobile-social-icons .social-icon.linkedin {
            border-color: #0077b5;
            color: #0077b5;
        }

        /* Mobile Menu Nav */
        .mobile-menu-nav {
            padding: 10px 0;
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 20px;
            color: var(--text-dark);
            font-size: var(--fs-base);
            font-weight: 500;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s ease;
        }

        .mobile-menu-item:hover {
            background: var(--bg-light);
        }

        .mobile-menu-item svg {
            width: 20px;
            height: 20px;
            color: #4a90a4;
            flex-shrink: 0;
        }

        .mobile-menu-item span {
            flex: 1;
        }

        .mobile-menu-item.has-submenu .arrow {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            transition: transform 0.2s ease;
        }

        .mobile-menu-item.has-submenu.open .arrow {
            transform: rotate(90deg);
        }

        /* Mobile Menu Item Wrapper */
        .mobile-menu-item-wrapper {
            display: block;
        }

        /* Mobile Submenu */
        .mobile-submenu {
            display: none;
            background: var(--bg-light);
        }

        .mobile-submenu.open {
            display: block;
        }

        .mobile-submenu a {
            display: block;
            padding: 12px 20px 12px 56px;
            color: var(--text-dark);
            font-size: var(--fs-base);
            font-weight: 500;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s ease;
        }

        .mobile-submenu a:hover {
            background: var(--border);
        }

        .mobile-submenu a:last-child {
            border-bottom: none;
        }

        /* Mobile Menu Logo */
        .mobile-menu-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-bottom: 1px solid var(--border);
            background: var(--primary-dark);
        }

        .mobile-menu-logo .logo img {
            height: 36px;
        }

        /* Mobile Top Bar Buttons (hidden on desktop) */
        .mobile-topbar-btn {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            color: var(--white);
            background: transparent;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
        }

        .mobile-topbar-btn svg {
            width: 22px;
            height: 22px;
        }

        @media (max-width: 768px) {
            /* Show mobile buttons in top bar */
            .mobile-topbar-btn {
                display: flex;
            }

            /* Top bar layout on mobile: [Search] [Logo] [Widgets] [Menu] */
            .top-bar-inner {
                padding: 0;
            }

            /* Hide finance ticker on mobile */
            .finance-ticker {
                display: none !important;
            }

            /* Center logo */
            .top-bar .logo {
                flex: 1;
                justify-content: center;
            }

            .top-bar .logo img {
                height: 32px;
            }

            /* Top right widgets - smaller on mobile */
            .top-right {
                gap: 0;
            }

            /* Hide weather, clock and imsak on mobile */
            .top-right .weather-widget,
            .top-right .clock-widget,
            .top-right .imsak-widget {
                display: none;
            }

            /* Hide main header on mobile */
            .main-header {
                display: none;
            }

            /* Hide main header's action buttons on mobile (they're in top bar now) */
            .main-header .header-actions {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .top-bar .logo img {
                height: 26px;
            }

            .mobile-topbar-btn {
                width: 40px;
                height: 40px;
            }

            .mobile-topbar-btn svg {
                width: 20px;
                height: 20px;
            }
        }

        /* ========================================
           SPOR HABERLERİ SECTION
        ======================================== */
        .spor-section {
            background: var(--bg-light);
            padding: 30px 0;
        }

        .spor-section-header {
            margin-bottom: 20px;
        }

        .spor-section-title {
            font-size: var(--fs-2xl);
            font-weight: 700;
            color: var(--primary-green);
        }

        .spor-grid {
            display: grid;
            grid-template-columns: 320px 1fr 340px;
            gap: 24px;
        }

        /* Puan Durumu Table */
        .puan-durumu {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .puan-header {
            background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .puan-title {
            font-size: var(--fs-lg);
            font-weight: 700;
            color: var(--white);
        }

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

        .puan-logo-text {
            font-size: var(--fs-xs);
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            text-align: right;
            text-transform: uppercase;
        }

        .puan-logo-icon {
            width: 28px;
            height: 28px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
        }

        .puan-logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .puan-table-header {
            display: grid;
            grid-template-columns: 32px 1fr 36px 36px 44px;
            padding: 8px 16px;
            background: #f8f8f8;
            font-size: var(--fs-xs);
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .puan-row {
            display: grid;
            grid-template-columns: 32px 1fr 36px 36px 44px;
            padding: 10px 16px;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        .puan-row:hover {
            background: #fafafa;
        }

        .puan-rank {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .puan-rank-bar {
            width: 3px;
            height: 18px;
            background: var(--primary-green);
            border-radius: 2px;
        }

        .puan-team {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .puan-team-logo {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .puan-team-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .puan-team-name {
            font-size: var(--fs-sm);
            font-weight: 600;
            color: var(--text-dark);
        }

        .puan-stat {
            font-size: var(--fs-sm);
            font-weight: 500;
            color: var(--text-light);
            text-align: center;
        }

        .puan-points {
            font-size: var(--fs-sm);
            font-weight: 700;
            color: var(--primary-green);
            text-align: center;
        }

        .puan-expand {
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .puan-expand:hover {
            background: #f5f5f5;
        }

        .puan-expand svg {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
        }

        /* Spor News Center */
        .spor-news-center {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .spor-featured-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

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

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

        .spor-news-item {
            display: flex;
            gap: 14px;
            background: var(--white);
            border-radius: 10px;
            padding: 10px;
            border: 1px solid var(--border);
            transition: box-shadow 0.2s;
        }

        .spor-news-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

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

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

        .spor-news-item-content {
            display: flex;
            align-items: center;
        }

        .spor-news-item-title {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Spor Right Column */
        .spor-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .spor-main-news {
            margin-bottom: 8px;
        }

        .spor-main-title {
            font-size: var(--fs-2xl);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .spor-main-meta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .spor-badge {
            background: var(--text-dark);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: var(--fs-xs);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .spor-reading-time {
            font-size: var(--fs-sm);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .spor-reading-time::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--text-muted);
            border-radius: 50%;
        }

        .spor-sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .spor-sidebar-item {
            display: flex;
            gap: 12px;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: box-shadow 0.2s;
        }

        .spor-sidebar-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .spor-sidebar-item-image {
            width: 120px;
            height: 80px;
            flex-shrink: 0;
        }

        .spor-sidebar-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .spor-sidebar-item-content {
            display: flex;
            align-items: center;
            padding: 8px 12px 8px 0;
        }

        .spor-sidebar-item-title {
            font-size: var(--fs-base);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive Spor Section */
        @media (max-width: 1200px) {
            .spor-grid {
                grid-template-columns: 300px 1fr;
            }

            .spor-right {
                display: none;
            }
        }

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

            .puan-durumu {
                max-width: 400px;
            }

            .spor-news-item-image {
                width: 120px;
                height: 80px;
            }

            .spor-news-item-title {
                font-size: var(--fs-base);
            }
        }

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

            .spor-section-title {
                font-size: var(--fs-xl);
            }

            .spor-news-item {
                padding: 8px;
                gap: 10px;
            }

            .spor-news-item-image {
                width: 100px;
                height: 70px;
            }

            .spor-news-item-title {
                font-size: var(--fs-sm);
            }
        }

        /* ========================================
           NEWS CARD GRID SECTION
        ======================================== */
        .news-card-grid-section {
            background: var(--bg-light);
            padding: 0 0 30px;
        }

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

        .news-card-item {
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .news-card-item:hover {
            transform: translateY(-4px);
        }

        .news-card-item-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/11;
            margin-bottom: 12px;
        }

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

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

        .news-card-item-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: var(--fs-xs);
            font-weight: 600;
        }

        .news-card-item-title {
            font-size: var(--fs-md);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive News Card Grid */
        @media (max-width: 1200px) {
            .news-card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

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

        @media (max-width: 576px) {
            .news-card-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .news-card-item-title {
                font-size: var(--fs-base);
            }
        }

        /* ========================================
           FEATURED NEWS 3-COLUMN SECTION
        ======================================== */
        .featured-news-section {
            background: var(--bg-light);
            padding: 30px 0;
        }

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

        .featured-news-card {
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .featured-news-card:hover {
            transform: translateY(-4px);
        }

        .featured-news-card-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/10;
            margin-bottom: 16px;
        }

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

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

        .featured-news-card-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .featured-news-card-desc {
            font-size: var(--fs-base);
            font-weight: 400;
            color: var(--text-light);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive Featured News */
        @media (max-width: 992px) {
            .featured-news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-news-card:last-child {
                grid-column: span 2;
            }

            .featured-news-card:last-child .featured-news-card-image {
                aspect-ratio: 2/1;
            }
        }

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

            .featured-news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .featured-news-card:last-child {
                grid-column: auto;
            }

            .featured-news-card:last-child .featured-news-card-image {
                aspect-ratio: 16/10;
            }

            .featured-news-card-title {
                font-size: var(--fs-lg);
            }

            .featured-news-card-desc {
                font-size: var(--fs-sm);
            }
        }

        /* ========================================
           TIME-BASED NEWS SECTION
        ======================================== */
        .time-news-section {
            background: var(--bg-light);
            padding: 30px 0;
        }

        .time-news-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-left: 16px;
            border-left: 4px solid #f97316;
        }

        .time-news-title {
            font-size: var(--fs-4xl);
            font-weight: 300;
            color: var(--text-dark);
        }

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

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

        /* Large Card */
        .time-news-card-large {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .time-news-card-large-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100%;
        }

        .time-news-card-large-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .time-news-card-large-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 20px 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
        }

        .time-news-card-large-title {
            font-size: var(--fs-lg);
            font-weight: 700;
            color: var(--white);
            line-height: 1.4;
        }

        /* Regular Card */
        .time-news-card {
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .time-news-card:hover {
            transform: translateY(-4px);
        }

        .time-news-card-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/10;
            margin-bottom: 12px;
        }

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

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

        .time-news-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: var(--fs-sm);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .time-news-badge svg {
            width: 12px;
            height: 12px;
        }

        .time-news-card-title {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive Time News */
        @media (max-width: 1200px) {
            .time-news-grid {
                grid-template-columns: 1fr 1fr;
            }

            .time-news-card-large {
                grid-column: span 2;
            }

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

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

            .time-news-card-large {
                grid-column: auto;
            }

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

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

            .time-news-title {
                font-size: var(--fs-2xl);
            }

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

            .time-news-card-large-title {
                font-size: var(--fs-md);
            }
        }

        /* ========================================
           GÜNDEM SECTION
        ======================================== */
        .gundem-section {
            background: var(--white);
            padding: 40px 0;
        }

        .gundem-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }

        .gundem-title {
            font-size: var(--fs-2xl);
            font-weight: 700;
            color: var(--text-dark);
            padding-left: 14px;
            border-left: 4px solid #e74c3c;
            white-space: nowrap;
        }

        .gundem-line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }

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

        .gundem-card {
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .gundem-card:hover {
            transform: translateY(-4px);
        }

        .gundem-card-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16/10;
            margin-bottom: 14px;
        }

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

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

        .gundem-card-title {
            font-size: var(--fs-md);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .gundem-row1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .gundem-row1 .gundem-card:nth-child(3) {
            display: none;
        }

        /* Responsive Gündem */
        @media (max-width: 992px) {
            .gundem-grid,
            .gundem-row1 {
                grid-template-columns: repeat(2, 1fr);
            }

            .gundem-row1 .gundem-card:nth-child(3) {
                display: none;
            }
        }

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

            .gundem-title {
                font-size: var(--fs-xl);
            }

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

            .gundem-card-title {
                font-size: var(--fs-md);
            }
        }

        /* ========================================
           EKONOMİ & UZMANPARA SLIDERS
        ======================================== */
        .dual-slider-section {
            background: var(--bg-light);
            padding: 30px 0;
        }

        .dual-slider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .dual-slider-column {
            display: flex;
            flex-direction: column;
        }

        .dual-slider-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .dual-slider-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--text-dark);
            padding-left: 14px;
            white-space: nowrap;
        }

        .dual-slider-title.green {
            border-left: 4px solid var(--primary-green);
        }

        .dual-slider-title.orange {
            border-left: 4px solid #f97316;
        }

        .dual-slider-line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .dual-slider-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/10;
        }

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

        .dual-slider-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 80px 24px 60px;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
        }

        .dual-slider-card-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 0;
        }

        .dual-slider-pagination {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dual-slider-page {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--fs-sm);
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.2s;
            border-radius: 4px;
        }

        .dual-slider-page:hover {
            color: var(--white);
        }

        .dual-slider-page.active {
            background: var(--white);
            color: var(--text-dark);
        }

        .dual-slider-wrapper {
            position: relative;
        }

        .dual-slider-wrapper .dual-slider-card {
            display: none;
        }

        .dual-slider-wrapper .dual-slider-card.active {
            display: block;
        }

        .dual-slider-wrapper .dual-slider-pagination {
            position: absolute;
            bottom: 24px;
            left: 24px;
            z-index: 10;
        }

        /* ========================================
           GÜNLÜK BURÇ YORUMLARI
        ======================================== */
        .burc-section {
            background: var(--white);
            padding: 30px 0 40px;
        }

        .burc-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }

        .burc-title {
            font-size: var(--fs-xl);
            font-weight: 700;
            color: var(--text-dark);
            padding-left: 14px;
            border-left: 4px solid #7c3aed;
            white-space: nowrap;
        }

        .burc-line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .burc-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 12px;
        }

        .burc-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 16px 8px;
            border-radius: 8px;
            transition: all 0.2s;
            cursor: pointer;
        }

        .burc-item:hover {
            background: #f5f3ff;
        }

        .burc-icon {
            width: 56px;
            height: 56px;
            background: #7c3aed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .burc-item:hover .burc-icon {
            transform: scale(1.1);
        }

        .burc-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        .burc-name {
            font-size: var(--fs-sm);
            font-weight: 700;
            color: var(--text-dark);
            text-transform: uppercase;
            text-align: center;
        }

        /* Responsive Dual Slider & Burç */
        @media (max-width: 1200px) {
            .burc-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        @media (max-width: 992px) {
            .dual-slider-grid {
                grid-template-columns: 1fr;
            }

            .dual-slider-card-title {
                font-size: var(--fs-lg);
            }

            .burc-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

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

            .dual-slider-title {
                font-size: var(--fs-lg);
            }

            .dual-slider-card-title {
                font-size: var(--fs-md);
                margin-bottom: 16px;
            }

            .dual-slider-overlay {
                padding: 60px 16px 16px;
            }

            .burc-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .burc-icon {
                width: 48px;
                height: 48px;
            }

            .burc-icon svg {
                width: 24px;
                height: 24px;
            }

            .burc-name {
                font-size: var(--fs-xs);
            }
        }

        /* ========================================
           MOBİL UYGULAMA BANNER
        ======================================== */
        .app-banner-section {
            background: #f5f5f5;
            padding: 40px 0;
            overflow: visible;
        }

        .app-banner-content {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
        }

        .app-banner-phones {
            flex-shrink: 0;
            margin-bottom: -40px;
            align-self: flex-end;
        }

        .app-banner-phones img {
            max-height: 220px;
            width: auto;
            display: block;
        }

        .app-banner-text {
            flex: 1;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .quote-mark {
            font-size: var(--fs-4xl);
            font-weight: 700;
            color: #ccc;
            line-height: 1;
        }

        .app-banner-title {
            font-size: var(--fs-xl);
            color: #555;
            line-height: 1.5;
            margin: 0;
        }

        .app-banner-title strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        .app-banner-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .app-store-btn,
        .google-play-btn {
            display: block;
            transition: transform 0.2s, opacity 0.2s;
        }

        .app-store-btn:hover,
        .google-play-btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .app-store-btn img,
        .google-play-btn img {
            height: 50px;
            width: auto;
            display: block;
        }

        /* App Banner Responsive */
        @media (max-width: 992px) {
            .app-banner-content {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }

            .app-banner-phones {
                order: 1;
            }

            .app-banner-text {
                order: 2;
                justify-content: center;
            }

            .app-banner-buttons {
                order: 3;
                width: 100%;
                justify-content: center;
            }
        }

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

            .app-banner-title {
                font-size: var(--fs-lg);
            }

            .quote-mark {
                font-size: var(--fs-4xl);
            }

            .app-banner-phones img {
                max-height: 160px;
            }
        }

        @media (max-width: 480px) {
            .app-banner-content {
                gap: 24px;
            }

            .app-banner-buttons {
                flex-direction: column;
                align-items: center;
            }

            .quote-mark {
                display: none;
            }

            .app-banner-phones img {
                max-height: 140px;
            }
        }

        /* ========================================
           FOOTER
        ======================================== */
        .site-footer {
            background: #1a1a1a;
            color: #999;
            margin-top: 0;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding: 50px 0 40px;
            border-bottom: 1px solid #333;
        }

        .footer-disclaimer {
            font-size: var(--fs-base);
            line-height: 1.6;
            color: #888;
            margin: 0 0 24px 0;
        }

        .footer-social {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #333;
        }

        .footer-social-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #2a2a2a;
            border-radius: 4px;
            color: #fff;
            transition: all 0.2s;
        }

        .footer-social-icon:hover {
            background: var(--accent-red);
        }

        .footer-social-icon.rss {
            background: #f97316;
        }

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

        .footer-links-col a {
            display: block;
            color: #ccc;
            font-size: var(--fs-base);
            padding: 4px 0;
            transition: color 0.2s;
        }

        .footer-links-col a:hover {
            color: #fff;
        }

        /* Footer Media Column */
        .footer-media {
            border-left: 1px solid #333;
            padding-left: 40px;
        }

        .footer-media-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: var(--fs-base);
            font-weight: 500;
            padding: 14px 0;
            border-bottom: 1px solid #333;
            transition: color 0.2s;
        }

        .footer-media-link:last-child {
            border-bottom: none;
        }

        .footer-media-link:hover {
            color: var(--accent-red);
        }

        .footer-media-link svg {
            color: #666;
        }

        /* Footer Topics */
        .footer-title {
            font-size: var(--fs-lg);
            font-weight: 700;
            margin: 0 0 20px 0;
        }

        .footer-title.yellow {
            color: #fbbf24;
        }

        .footer-title.red {
            color: #ef4444;
        }

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

        .footer-topics-col a,
        .footer-services-list a {
            display: block;
            color: #ccc;
            font-size: var(--fs-base);
            padding: 5px 0;
            transition: color 0.2s;
        }

        .footer-topics-col a:hover,
        .footer-services-list a:hover {
            color: #fff;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 20px 0;
        }

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

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .footer-copyright {
            font-size: var(--fs-sm);
            color: #666;
        }

        .footer-separator {
            color: #444;
        }

        .footer-policy-link {
            font-size: var(--fs-sm);
            color: #4da6ff;
            transition: color 0.2s;
        }

        .footer-policy-link:hover {
            color: #fff;
        }

        .footer-bottom-center {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #22c55e;
        }

        .footer-phone {
            font-size: var(--fs-base);
            font-weight: 600;
            color: #fff;
        }

        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: var(--fs-sm);
            color: #666;
        }

        .footer-bottom-right strong {
            color: #999;
        }

        /* Footer Responsive */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-media {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid #333;
                padding-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 0;
            }

            .footer-media {
                border-top: 1px solid #333;
                padding-top: 20px;
            }

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

            .footer-bottom-left {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-social {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-links-grid {
                grid-template-columns: 1fr;
            }

            .footer-topics-grid {
                grid-template-columns: 1fr;
            }
        }
