:root {
            --primary-red: #dc2626;
            --dark-bg: #1a1a1a;
            --card-bg: #f8f9fa;
            --font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
        }

        body {
            font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
            background-color: #f5f5f5;
        }

        /* Üst Bar */
        .top-bar {
            background-color: #e9ecef;
            font-size: 0.85rem;
            padding: 8px 0;
        }

        .top-bar a {
            color: #333;
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--primary-red);
        }

        .navbar-toggler-icon {
          display: inline-block;
          width: 1.0em;
          vertical-align: middle;
          background-image: var(--bs-navbar-toggler-icon-bg);
          font-size: 1.25rem !important;
        }

        /* Sosyal Medya İkonları - SVG Düzeltilmiş */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 1px;
        }

        .social-icons a {
            color: #fff;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            text-decoration: none;
            transition: transform 0.2s, opacity 0.2s;
            overflow: hidden;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            opacity: 0.9;
            color: #fff;
        }

        .social-icons a svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .social-icons .facebook { background: #3b5998; }
        .social-icons .twitter { background: #000000; }
        .social-icons .instagram { background: #E4405F; }
        .social-icons .linkedin { background: #0077b5; }
        .social-icons .youtube { background: #ff0000; }
        .social-icons .nicon { background: #1a1a1a; }
        .social-icons .whatsapp { background: #25d366; }
        .social-icons .tiktok { background: #000000; }

        /* Navbar */
        .main-navbar {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 0px 0;
        }

        .navbar-brand img {
            width: 178px;
        }

        .nav-link {
            color: #333 !important;
            font-weight: 600;
            font-size: 1.05rem;
            margin: 0 8px;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s;
        }

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

        /* Yan Reklamlar */
        .side-ad {
            background: #2c3e50;
            color: white;
            position: relative;
            overflow: hidden;
            height: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .side-ad img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .ad-content {
            position: relative;
            z-index: 2;
        }

        .ad-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255,255,255,0.9);
            color: #333;
            padding: 2px 8px;
            font-size: 0.7rem;
            border-radius: 3px;
            z-index: 3;
        }

        .ad-expand {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.9);
            padding: 5px 15px;
            border-radius: 20px;
            cursor: pointer;
            z-index: 3;
        }

        /* Keşfet Bölümü */
        .discover-section {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .discover-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.3s;
        }

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

        .discover-item:hover {
            color: var(--primary-red);
            padding-left: 10px;
        }

        .discover-item i {
            color: #999;
        }

        /* Son Dakika Bandı */
        .breaking-news {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .breaking-label {
            background: var(--primary-red);
            color: white;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            white-space: nowrap;
        }

        .breaking-content {
            flex: 1;
            color: #333;
            font-weight: 500;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .breaking-item {
            min-width: 100%;
            white-space: nowrap;
            padding: 0 10px;
        }

        .breaking-nav {
            display: flex;
            gap: 5px;
            padding-right: 15px;
        }

        .breaking-nav button {
            background: #f0f0f0;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .breaking-nav button:hover {
            background: var(--primary-red);
            color: white;
        }

        /* Ana Haber Kartı */
        .main-news-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

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

        .news-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(to left, rgba(220, 38, 38, 0.95), rgba(220, 38, 38, 0.7), transparent);
            display: flex;
            align-items: center;
            padding: 40px;
        }

        .news-content {
            color: white;
            text-align: right;
        }

        .news-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Numara İndikatörleri */
        .number-indicators {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        .number-item {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            border-bottom: 1px solid #ddd;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

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

        .number-item.active {
            background: var(--primary-red);
            color: white;
        }

        .number-item:hover:not(.active) {
            background: #f0f0f0;
            color: var(--primary-red);
        }

        /* Haber Kartları Grid - ESKİ .news-card KALDIRILDI, .card kullanılıyor */
        .news-grid-section {
            margin-top: 30px;
        }

.card-img {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

        /* GLOBAL CARD TANIMLARI - Tekrarlar birleştirildi */
        .card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.12);
        }

        /* Card Modifiers - Yükseklik varyasyonları */
        .card--height-sm .card-img { height: 150px; }
        .card--height-md .card-img { height: 180px; }
        .card--height-lg .card-img { height: 200px; }
        .card--height-xl .card-img { height: 220px; }
        .card--height-xxl .card-img { height: 280px; }

        .card-img {
            position: relative;
            height: 180px; /* default */
            overflow: hidden;
        }

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

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

        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 6px 14px;
            font-size: 0.8rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .card-badge--lowercase {
            text-transform: capitalize;
            font-weight: 500;
        }

        .card-body {
            padding: 20px;
        }

        .card-body--compact {
            padding: 15px;
        }

        .card-title {
            font-size: 1.125rem;
            color: #1a1a1a;
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-title--sm {
            font-size: 0.95rem;
        }

        .card-title--lg {
            font-size: 1.1rem;
            line-height: 1.5;
        }

        /* Eski .news-card stilleri .card ile değiştirildi */
        .category-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 12px;
            font-size: 0.75rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Altın Fiyatları Slider */
        .gold-slider-section {
            margin-top: 30px;
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .gold-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .gold-ad-label {
            background: #e9ecef;
            color: #666;
            padding: 2px 8px;
            font-size: 0.7rem;
            border-radius: 3px;
        }

        .gold-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.9rem;
        }

        .gold-brand img {
            height: 20px;
        }

        .gold-card {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s;
        }

        .gold-card:hover {
            transform: scale(1.02);
        }

        .gold-card-img {
            height: 120px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .gold-card-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .gold-card-body {
            padding: 15px;
            text-align: left;
        }

        .gold-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .gold-name {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.3;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.1);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(0,0,0,0.2);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            width: 20px;
            height: 20px;
        }

        /* Resmi Gazete Bölümü */
        .resmi-card-section {
            margin-top: 30px;
        }

        .resmi-card-slider {
            position: relative;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
        }

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

        .resmi-card-overlay {
            position: absolute;
            bottom: 0px;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 20px;

        }

        .resmi-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            overflow: hidden;
            display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1;
        }

        .resmi-card-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .resmi-card-nav:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .resmi-card-nav.prev { left: 20px; }
        .resmi-card-nav.next { right: 20px; }

        .resmi-card-nav i {
            font-size: 1.5rem;
            color: #333;
        }

        /* Sayfa Numaraları */
        .page-numbers {
            display: flex;
            background: #fff;
            padding: 10px;
            gap: 7px;
            overflow-x: auto;
        }

        .page-number {
            min-width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .page-number:hover,
        .page-number.active {
            background: rgb(220, 38, 38);
        }

        /* Gündem Bölümü */
        .gundem-section {
            margin-top: 30px;
        }

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

        .section-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-line {
            flex: 1;
            height: 2px;
            background: #ddd;
        }

        .gundem-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .gundem-item {
            display: flex;
            gap: 15px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            cursor: pointer;
        }

        .gundem-item:hover {
            transform: translateX(5px);
        }

        .gundem-img {
            width: 120px;
            height: 80px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .gundem-content {
            padding: 15px;
            display: flex;
            align-items: center;
        }

        .gundem-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

        /* Büyük Haber Grid Bölümü (9 kart) */
        .card-grid {
            margin-top: 40px;
        }

        /* Köşe Yazarları Bölümü */
        .kose-yazarlar-section {
            margin-top: 40px;
        }

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

        .kose-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .kose-line {
            flex: 1;
            height: 2px;
            background: #ddd;
        }

        .author-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .author-card:hover {
            transform: translateX(10px);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .author-avatar i {
            font-size: 2rem;
            color: #666;
        }

        .author-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: #888;
            margin: 0;
        }

        /* Section Header - Ortak yapı */
        .section-header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .section-title-main {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-all-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .section-all-link:hover {
            color: var(--primary-red);
        }

        /* Aromaterapi, Spor, Filmler, Video bölümleri ortak header kullanıyor */
        .aromaterapi-section,
        .spor-section,
        .filmler-section,
        .video-galeri-section {
             padding: 20px 15px;
        }


        /* TARİHTE BUGÜN Bölümü */
        .tarihte-bugun-section {
            margin-top: 40px;
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

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

        .tarihte-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .tarihte-date {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .tarihte-date span {
            font-size: 0.95rem;
            color: #666;
            font-weight: 600;
        }

        .tarihte-btn {
            background: var(--primary-red);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: background 0.3s;
        }

        .tarihte-btn:hover {
            background: #b91c1c;
            color: white;
        }

        .tarihte-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .tarihte-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s;
        }

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

        .tarihte-item:hover {
            background: #fafafa;
            margin: 0 -25px;
            padding-left: 25px;
            padding-right: 25px;
        }

        .tarihte-year {
            background: var(--primary-red);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
            min-width: 50px;
            text-align: center;
        }

        .tarihte-item p {
            margin: 0;
            color: #333;
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 500;
        }

        /* GAZETE MANŞETLERİ Bölümü */
        .gazete-section {
            margin-top: 40px;
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

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

        .gazete-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .gazete-all {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .gazete-all:hover {
            color: #b91c1c;
            text-decoration: underline;
        }

        .gazete-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-red) #f0f0f0;
        }

        .gazete-slider::-webkit-scrollbar {
            height: 6px;
        }

        .gazete-slider::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 3px;
        }

        .gazete-slider::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 3px;
        }

        .gazete-item {
            flex: 0 0 auto;
            width: 140px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        .gazete-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-bottom: 10px;
            background: #f0f0f0;
        }

        .video-item img {
            width: 100%;
            object-fit: cover;




        }

        .video-item {
            flex: 0 0 auto;

            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        .video-slider {
            display: flex;
            gap: 19px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-red) #f0f0f0;
        }

        .video-slider::-webkit-scrollbar {
            height: 6px;
        }

        .video-slider::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 3px;
        }

        .video-slider::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 3px;
        }

        .gazete-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #1a1a1a;
            display: block;
        }


/* FILMLER Bölümü */
        .vizyondakiler-section {
            margin-top: 40px;
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

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

        .vizyondakiler-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .vizyondakiler-all {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .vizyondakiler-all:hover {
            color: #b91c1c;
            text-decoration: underline;
        }

        .vizyondakiler-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-red) #f0f0f0;
        }

        .vizyondakiler-slider::-webkit-scrollbar {
            height: 6px;
        }

        .vizyondakiler-slider::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 3px;
        }

        .vizyondakiler-slider::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 3px;
        }

        .vizyondakiler-item {
            flex: 0 0 auto;
            width: 210px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        .vizyondakiler-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-bottom: 10px;
            background: #f0f0f0;
        }

        .vizyondakiler-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #1a1a1a;
            display: block;
        }

        /* Puan Durumu */
        .puan-durumu {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .puan-durumu table {
            margin: 0;
            font-size: 0.85rem;
        }

        .puan-durumu thead th {
            background: rgb(5 122 85 / var(--tw-bg-opacity, 1));
            color: white;
            font-weight: 700;
            border: none;
            padding: 12px 8px;
            text-align: center;
            font-size: 0.8rem;
        }

        .puan-durumu tbody td {
            padding: 10px 8px;
            vertical-align: middle;
            text-align: center;
            font-weight: 600;
        }

        .puan-durumu tbody tr:nth-child(-n+3) {
            background: rgba(220, 38, 38, 0.05);
        }

        .puan-durumu tbody tr:nth-child(-n+3) td:first-child {
            color: var(--primary-red);
            font-weight: 800;
        }

        /* Filmler - Kart varyasyonu */
        .film-card {
            flex: 0 0 auto;
            width: 200px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .film-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.15);
        }

        .film-card .card-img {
            height: 280px;
        }

        .film-date {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 10px;
            font-size: 0.75rem;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Video Galeri */
        .main-video {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .videolar-section {
            margin-top: 40px;
            background: #4c1d95;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .video-thumbnail {
            position: relative;
            height: 485px;
            overflow: hidden;
            cursor: pointer;
        }

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

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .video-all-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .video-all-link:hover {
            color: #fff;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s;
            z-index: 2;
        }

        .video-thumbnail:hover .play-button {
            color: var(--primary-red);
            transform: translate(-50%, -50%) scale(1.1);
        }

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

        .video-info h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .video-info p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0;
        }

        .video-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .video-item {
            display: flex;
            gap: 15px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        .video-thumb {
            position: relative;
            width: 140px;
            height: 85px;
            flex-shrink: 0;
            overflow: hidden;
        }

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

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(220, 38, 38, 0.9);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .video-text {
            padding: 10px 15px 10px 0;
            display: flex;
            align-items: center;
        }

        .video-text h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Carousel Indicators Custom */
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
        }

        .carousel-indicators button.active {
            background-color: var(--primary-red);
        }



        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        .nav-link, .navbar-brand {
            font-weight: 600;
        }

        .breaking-label, .section-title, .kose-title, .section-title-main, 
        .tarihte-title, .gazete-title, .card-title {
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .gold-price {
            font-weight: 800;
        }

        .puan-durumu table {
            font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif !important;
        }

        /* Responsive Ayarlamalar - Birleştirilmiş */
        @media (max-width: 992px) {
            .side-ad {
                height: 200px;
                margin-bottom: 20px;
            }

            .news-overlay {
                width: 100%;
                background: linear-gradient(to top, rgba(220, 38, 38, 0.95), rgba(220, 38, 38, 0.7), transparent);
                top: auto;
                bottom: 40px;
                height: 25%;
                padding: 20px;
            }

            .news-content {
                text-align: left;
            }

            .news-content h2 {
                font-size: 20px;
            }

            .number-indicators {
                flex-direction: row;
                height: 40px;
                width: 100%;
                top: auto;
                bottom: 0%;
            }

            .number-item {
                flex: 1;
                border-bottom: none;
                border-right: 1px solid #ddd;
            }

            .card-img {
                height: 160px;
            }

            .card--height-sm .card-img,
            .card--height-md .card-img,
            .card--height-lg .card-img,
            .card--height-xl .card-img,
            .card--height-xxl .card-img {
                height: 160px;
            }

            .resmi-card-img {
                height: 250px;
            }

            .resmi-card-title {
                font-size: 1.3rem;
            }

            .gundem-img {
                width: 100px;

            }

            .film-card {
                width: 160px;
            }

            .film-card .card-img {
                height: 220px;
            }

            .video-thumbnail {
                height: 300px;
            }

            .play-button {
                font-size: 4rem;
            }

            .video-info h4 {
                font-size: 1.1rem;
            }

            .video-info p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar .d-flex {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .social-icons {
                margin-top: 10px;
            }

            .news-grid-section .col-6 {
                padding: 5px;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .card-title--lg {
                font-size: 1.2rem;
            }

            .page-number {
                min-width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }

            .gundem-text {
                font-size: 1.00rem;
            }

            .card-grid .col-6 {
                padding: 5px;
            }

            .card-body {
                padding: 12px;
            }

            .card-body--compact {
                padding: 10px;
            }

            .author-card {
                padding: 15px;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
            }

            .section-title-main {
                font-size: 1.1rem;
            }

            .film-card {
                width: 140px;
            }

            .film-card .card-img {
                height: 190px;
            }

            .video-thumbnail {
                height: 220px;
            }

            .play-button {
                font-size: 3rem;
            }

            .video-info {
                padding: 20px;
            }

            .video-info h4 {
                font-size: 0.95rem;
            }

            .video-info p {
                font-size: 0.8rem;
            }

            .video-thumb {
                width: 120px;
                height: 75px;
            }

            .video-text h6 {
                font-size: 0.8rem;
            }

            .puan-durumu {
                margin-top: 20px;
            }

            .puan-durumu table {
                font-size: 0.75rem;
            }

            .puan-durumu thead th,
            .puan-durumu tbody td {
                padding: 8px 4px;
            }

            .tarihte-header,
            .gazete-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .tarihte-item {
                padding: 15px 0;
            }

            .tarihte-item:hover {
                margin: 0 -15px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .tarihte-year {
                font-size: 0.8rem;
                min-width: 45px;
            }

            .tarihte-item p {
                font-size: 0.9rem;
            }

            .gazete-item {
                width: 120px;
            }

            .gazete-item img {
                height: 150px;
            }

            .gazete-name {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .card-img {
                height: 250px;
            }

            .card--height-sm .card-img,
            .card--height-md .card-img,
            .card--height-lg .card-img,
            .card--height-xl .card-img,
            .card--height-xxl .card-img {
                height: 250px;
            }

            .card-badge {
                font-size: 0.7rem;
                padding: 4px 8px;
            }

            .film-card {
                width: 120px;
            }

            .film-card .card-img {
                height: 160px;
            }

            .film-date {
                font-size: 0.7rem;
            }

            .video-thumb {
                width: 100px;
                height: 65px;
            }

            .video-text {
                padding: 8px 10px 8px 0;
            }

            .video-text h6 {
                font-size: 0.75rem;
            }

            .tarihte-bugun-section,
            .gazete-section {
                padding: 20px 15px;
            }

            .tarihte-title,
            .gazete-title {
                font-size: 1.1rem;
            }

            .gazete-item {
                width: 100px;
            }

            .gazete-item img {
                height: 130px;
            }
        }

/* Mobilde top-bar gizle */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    .breaking-news {
        display: none;
    }


}

.prayer-times {
    background: linear-gradient(180deg, #6ec29a, #58b184),
                url('../img/namaz-vakitleri.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* gradient + görsel birleşir */

    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    position: relative;
}

/* üst background cami görseli */
.prayer-times .prayer-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.15;
}

/* şehir seçimi */
.custom-selectbox {
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

/* dropdown */
.custom-selectbox ul {
    display: none;
    position: absolute;
    width: 200px;
    z-index: 999;
    border-radius: 4px;
    padding: 5px 0;
}

.custom-selectbox.active ul {
    display: block;
}

.custom-selectbox ul li {
    list-style: none;
}

.custom-selectbox ul li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
}

.custom-selectbox ul li a:hover {
    background: #f1f1f1;
}

/* geri sayım */
.remaining-time {
    font-size: 14px;
}

.remaining-time .remaining {
    font-size: 22px;
}

/* vakit kutuları */
.time-box {
    background: #fffafad1;
    color: #2e7d5b;
    border-radius: 4px;
    font-weight: 500;
}

/* aktif vakit */
.time-box.active {
    background: #4fa77a;
    color: #fff;
}

/* icon */
.time-box .icon i {
    font-size: 14px;
}

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

a:hover {
    text-decoration: none;
}

.breaking-item a {
    color: #333;            /* istediğin renk */
    text-decoration: none; /* alt çizgiyi kaldır */
    font-weight: 500;
}

.breaking-item a:hover {
    color: var(--primary-red); /* hover rengi */
    text-decoration: none;
}

.site-footer {
            background-color: #1e293b;
            color: #94a3b8;
            padding: 50px 0 0;
            margin-top: 50px;
            font-family: 'Poppins', sans-serif;
        }
        
        .footer-title {
            color: #f1f5f9;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #fff;
            transform: translateX(3px);
        }
        
        .footer-social {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .social-icons-row {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            opacity: 0.8;
        }
        
        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        
        .social-icon.facebook { background-color: #1877f2; }
        .social-icon.twitter { background-color: #000; }
        .social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .social-icon.linkedin { background-color: #0a66c2; }
        .social-icon.youtube { background-color: #ff0000; }
        .social-icon.nicon { background-color: #00a0e4; }
        .social-icon.whatsapp { background-color: #25d366; }
        .social-icon.tiktok { background-color: #000; }
        
        .app-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .app-btn img {
            height: 38px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .app-btn:hover img {
            transform: scale(1.05);
        }
        
        .software-credit {
            color: #94a3b8;
            font-size: 14px;
            margin-top: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid #334155;
            margin-top: 40px;
            padding: 20px 0;
            text-align: center;
        }
        
        .copyright {
            color: #cbd5e1;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .site-footer {
                padding: 30px 0 0;
            }
            
            .footer-social {
                align-items: center;
                margin-top: 20px;
            }
            
            .social-icons-row {
                justify-content: center;
            }
            
            .app-buttons {
                justify-content: center;
            }
            
            .software-credit {
                text-align: center;
            }
        }

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgb(255, 255, 255) !important;
}

.viyondakiler-badge {
  position: relative;
  top: -290px;
  left: -43px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}



 .breadcrumb-nav {
            background-color: #fff;
            padding: 12px 0;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .breadcrumb {
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: #999;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: #999;
        }
        
        .main-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-menu li {
            margin-bottom: 8px;
        }
        
        .sidebar-menu a {
            display: block;
            background-color: #e9ecef;
            color: #333;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        
        .sidebar-menu a:hover {
            background-color: #dee2e6;
        }
        
        .sidebar-menu a.active {
            background-color: #d1d5db;
            font-weight: 500;
        }
        
        
        ul.custom-list {
            list-style: none;
            padding-left: 0;
        }
        
        ul.custom-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            color: #555;
            font-size: 15px;
        }
        
        ul.custom-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #999;
        }
        
        ul.custom-list li strong {
            color: #333;
        }
        
        .cookie-table {
            width: 100%;
            margin-top: 15px;
            margin-bottom: 25px;
            font-size: 14px;
        }
        
        .cookie-table th {
            text-align: left;
            padding: 12px 10px;
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
            color: #333;
        }
        
        .cookie-table td {
            padding: 12px 10px;
            border-bottom: 1px solid #e9ecef;
            color: #555;
        }
        
        .browser-links {
            list-style: none;
            padding-left: 20px;
        }
        
        .browser-links li {
            margin-bottom: 8px;
        }
        
        .browser-links a {
            color: #333;
            text-decoration: underline;
            font-size: 15px;
        }
        
        .update-date {
            color: #666;
            font-size: 14px;
            font-style: italic;
            margin-top: 25px;
        }
        
        @media (max-width: 768px) {
            .main-content {
                padding: 20px;
            }
            
            .sidebar {
                margin-top: 20px;
            }
        }

        .news-title {
            font-weight: 700;
            font-size: 1.75rem;
            color: #000;
            background: #fff;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.25rem;
        }
        
        .section-header {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .section-header::after {
            content: '';
            flex: 1;
            height: 2px;
            background: #dee2e6;
            margin-left: 1rem;
        }
        
        .sidebar-card {
            background: #fff;
            border: none;
            border-radius: 0.5rem;
            margin-bottom: 0.75rem;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }
        
        .sidebar-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .sidebar-card .card-body {
            padding: 1rem;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .main-article {
            background: #fff;
            border-radius: 0.5rem;
            padding: 1.5rem;
        }
        
        .article-meta {
            background: #e9ecef;
            padding: 0.75rem;
            border-radius: 0.25rem;
            margin-bottom: 1.5rem;
        }
        
        .agency-link {
            color: #5a9aa0;
            text-decoration: none;
            font-weight: 500;
        }
        
        .agency-link:hover {
            text-decoration: underline;
        }
        
        .comment-box {
            background: #fff;
            border-radius: 0.5rem;
            margin-top: 1.5rem;
        }
        
        .btn-send {
            background-color: var(--primary-red);
            border: none;
            font-weight: 600;
        }
        
        .btn-send:hover {
            background-color: #bb2d3b;
        }
        
        .text-size-btn {
            width: 32px;
            height: 32px;
            padding: 0;
            font-weight: 600;
        }
        
        .text-size-large {
            font-size: 1.2rem;
        }
        
        .text-size-small {
            font-size: 0.8rem;
        }

.st-btn.st-first.st-last.st-remove-label {
  width: 50px;
  height: 32px;
}

 /* Sosyal Medya Buton Stilleri */
        .social-share-container {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
        }
        
        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        /* Facebook */
        .btn-facebook {
            background-color: #1877F2;
            color: white;
            border-color: #1877F2;
        }
        .btn-facebook:hover {
            background-color: #166fe5;
            color: white;
        }
        
        /* X (Twitter) */
        .btn-x {
            background-color: #000000;
            color: white;
            border-color: #000000;
        }
        .btn-x:hover {
            background-color: #333333;
            color: white;
        }
        
        /* WhatsApp */
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            border-color: #25D366;
        }
        .btn-whatsapp:hover {
            background-color: #128C7E;
            color: white;
        }
        
        /* Email */
        .btn-email {
            background-color: #EA4335;
            color: white;
            border-color: #EA4335;
        }
        .btn-email:hover {
            background-color: #d33b28;
            color: white;
        }
        
        /* Sesli Dinle Butonu */
        .btn-audio {
            background-color: #6c757d;
            color: white;
            border-color: #6c757d;
            width: 36px;
            height: 36px;
            padding: 0;
            border-radius: 50%;
        }
        .btn-audio:hover {
            background-color: #5a6268;
            color: white;
        }
        
        /* Mobil Uyumluluk */
        @media (max-width: 576px) {
            .social-btn span {
                display: none;
            }
            .social-btn {
                width: 40px;
                height: 40px;
                padding: 0;
                border-radius: 50%;
            }
        }
        .movie-card {
            position: relative;
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .movie-poster {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .movie-poster img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 2/3;
            object-fit: cover;
        }
        
        .movie-date {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #000;
            color: #fff;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 500;
            z-index: 2;
        }
        
        .movie-title {
            text-align: center;
            padding: 12px 8px;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            background-color: #fff;
            margin: 0;
            line-height: 1.4;
        }
        
        .movie-title.highlight {
            color: #dc3545;
        }
        
        /* Mobil için 2 sütun, tablet için 3, desktop için 4 */
        .movie-col {
            padding-left: 10px;
            padding-right: 10px;
        }
        
        @media (max-width: 576px) {
            .movie-col {
                width: 50%;
            }
        }
        
        @media (min-width: 577px) and (max-width: 991px) {
            .movie-col {
                width: 33.333%;
            }
        }
        
        @media (min-width: 992px) {
            .movie-col {
                width: 25%;
            }
        }

        /* Sol Taraf - Film Detayları */
        .movie-detail-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 4px;
        }
        
        .movie-poster-large {
            width: 100%;
            max-width: 250px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .info-label {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .info-value {
            color: #555;
            font-size: 15px;
            margin-bottom: 15px;
        }
        
        .movie-description {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin-top: 20px;
        }
        
        /* Sağ Taraf - İlginizi Çekebilir */
        .sidebar-section {
            background-color: transparent;
        }
        
        .sidebar-title {
            color: #dc3545;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .sidebar-movie-card {
            background-color: #fff;
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .sidebar-movie-poster {
            position: relative;
            width: 100%;
            aspect-ratio: 2/3;
            overflow: hidden;
        }
        
        .sidebar-movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sidebar-movie-date {
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(0,0,0,0.8);
            color: #fff;
            padding: 5px 8px;
            font-size: 12px;
            line-height: 1.3;
        }
        
        .sidebar-movie-title {
            text-align: center;
            padding: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
        }
        
        /* Responsive ayarlar */
        @media (max-width: 991px) {
            .movie-poster-large {
                max-width: 200px;
                margin-bottom: 20px;
            }
            
            .sidebar-section {
                margin-top: 30px;
            }
        }
