/* Karadeniz Teması - Deniz ve Yeşil Tonları */

:root {
    --primary-color: #0d4c73; /* Derin deniz mavisi */
    --secondary-color: #1a6b3a; /* Koyu orman yeşili */
    --accent-color: #2e8b57; /* Deniz yeşili */
    --accent-light: #4a9d6e; /* Açık deniz yeşili */
    --sea-blue: #1e90ff; /* Deniz mavisi */
    --forest-green: #228b22; /* Orman yeşili */
    --text-color: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f0f8f5; /* Açık yeşilimsi arka plan */
    --bg-gradient: linear-gradient(135deg, #0d4c73 0%, #1a6b3a 50%, #2e8b57 100%);
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background: var(--bg-light);
    background-image: 
        linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50" stroke="rgba(13,76,115,0.1)" fill="none" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    position: relative !important;
    padding: 0.5rem 0;
}


.bg-primary {
    background: var(--bg-gradient) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--text-light) !important;
}

/* Mobil navbar brand */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 0.9rem;
        font-weight: 600;
        margin-left: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100vw - 100px);
    }
    
    .navbar-toggler {
        margin-right: 0.5rem;
    }
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0.75rem !important;
    border-radius: 5px;
    margin: 0 0.15rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--text-light) !important;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Dropdown menü */
.navbar-nav .dropdown-menu {
    background: rgba(13, 76, 115, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    color: rgba(255,255,255,0.9);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    transform: translateX(5px);
}

.navbar-nav .dropdown-item i {
    margin-right: 0.5rem;
    width: 20px;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Navbar CANLI İZLE butonu */
.navbar-nav .nav-item .btn {
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* Navbar sosyal medya ikonları */
.navbar-nav .nav-item .social-icon {
    font-size: 0.9rem;
    padding: 0.25rem 0.35rem;
    transition: all 0.3s;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.navbar-nav .nav-item .social-icon:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px) scale(1.1);
    color: var(--text-light) !important;
}

/* Navbar için orta ekran optimizasyonu (HD/FHD) */
@media (min-width: 992px) and (max-width: 1600px) {
    .navbar-nav .nav-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.88rem;
        margin: 0 0.1rem;
    }
    
    .navbar-nav .nav-item .btn {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.7rem !important;
    }
    
    .navbar-nav .nav-item .social-icon {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }
    
    .navbar-nav .nav-item .d-flex {
        gap: 0.15rem !important;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-item .btn {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-item .d-flex {
        justify-content: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-item .social-icon {
        font-size: 1rem;
        padding: 0.3rem 0.4rem;
    }
}

/* Butonlar */
.btn-primary {
    background: var(--bg-gradient);
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #1a6b3a 0%, #2e8b57 50%, #0d4c73 100%);
    color: var(--text-light);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--bg-gradient);
    border-color: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Kartlar */
.card {
    transition: all 0.3s;
    border: none;
    overflow: hidden;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-img-top {
    transition: transform 0.5s;
}

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

/* Oyuncular sayfası için resim wrapper */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
}

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

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #555;
    line-height: 1.7;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: var(--bg-gradient);
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.hero-section p {
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-section h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-section .btn-outline-primary {
    border-color: rgba(255,255,255,0.8) !important;
    color: #ffffff !important;
}

.hero-section .btn-outline-primary:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.hero-section .btn-outline-warning:hover {
    background: rgba(255,193,7,0.3) !important;
    border-color: #ffc107 !important;
    color: #ffc107 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

.hero-section .btn-outline-danger:hover {
    background: rgba(220,53,69,0.3) !important;
    border-color: #ff6b6b !important;
    color: #ff6b6b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220,53,69,0.4);
}

/* Hero section butonları için z-index */
.hero-section .d-flex {
    position: relative;
    z-index: 2;
}

.hero-section .btn {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--bg-gradient) !important;
    margin-top: auto;
    color: var(--text-light);
    padding: 3rem 0 1.5rem !important;
}

footer h2,
footer h5 {
    color: var(--text-light) !important;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

footer p {
    color: var(--text-light) !important;
}

footer a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: var(--text-light) !important;
    text-decoration: underline;
}

footer .alert-sm {
    padding: 0.75rem;
    font-size: 0.9rem;
    background-color: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: var(--text-light) !important;
    border-radius: 8px;
}

footer .alert-sm strong {
    color: var(--text-light) !important;
}

footer .text-muted {
    color: rgba(255,255,255,0.8) !important;
}

/* Badge */
.badge {
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: 6px;
}

.bg-primary {
    background: var(--bg-gradient) !important;
}

/* Text colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Background colors */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* YouTube embed responsive */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video card overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 76, 115, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    border-radius: 12px;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover .video-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s;
}

/* Bölümler Sayfası - Yeni Yaratıcı Tasarım */
.bolumler-hero {
    padding: 2rem 0;
}

.bolumler-hero-icon {
    font-size: 4rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bolumler-info-card {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.08) 0%, rgba(26, 107, 58, 0.08) 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bolumler-info-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.bolumler-info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bolumler-info-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bolumler-info-content p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

/* Bölüm Episode Kartları - Yeni Tasarım */
.bolum-episode-card {
    height: 100%;
    position: relative;
}

.bolum-episode-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    will-change: transform;
}

.bolum-episode-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 76, 115, 0.25);
}

.bolum-episode-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-gradient);
}

.bolum-episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.bolum-episode-link:hover .bolum-episode-image img {
    transform: scale(1.15);
}

.bolum-episode-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    background: rgba(220, 53, 69, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bolum-episode-link:hover .bolum-episode-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.bolum-episode-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.bolum-episode-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.bolum-episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.bolum-episode-link:hover .bolum-episode-overlay {
    opacity: 1;
}

.bolum-episode-play {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bolum-episode-link:hover .bolum-episode-play {
    transform: scale(1);
}

.bolum-episode-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bolum-episode-link:hover .bolum-episode-gradient {
    opacity: 1;
}

.bolum-episode-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 280px);
    min-height: 180px;
}

.bolum-episode-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    min-height: 3.2rem;
}

.bolum-episode-link:hover .bolum-episode-title {
    color: var(--accent-color);
}

.bolum-episode-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bolum-episode-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(13, 76, 115, 0.1);
    margin-top: auto;
}

.bolum-episode-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.85rem;
}

.bolum-episode-date i {
    color: var(--primary-color);
}

.bolum-episode-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bolum-episode-link:hover .bolum-episode-action {
    color: var(--accent-color);
    gap: 0.75rem;
}

.bolum-episode-action i {
    transition: transform 0.3s ease;
}

.bolum-episode-link:hover .bolum-episode-action i {
    transform: translateX(5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .bolumler-hero-icon {
        font-size: 3rem;
    }
    
    .bolumler-info-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .bolumler-info-icon {
        font-size: 2rem;
    }
    
    .bolum-episode-image {
        height: 240px;
    }
    
    .bolum-episode-play {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Bölüm Detay Sayfası Stilleri */
.bolum-tanitim-card {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bolum-tanitim-header {
    margin-bottom: 1.5rem;
}

.bolum-tanitim-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bolum-tanitim-title i {
    font-size: 1.75rem;
}

.bolum-tanitim-content {
    margin-bottom: 1.5rem;
}

.bolum-tanitim-text {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

.bolum-tanitim-tags {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(13, 76, 115, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.bolum-tags-label {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bolum-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bolum-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bolum-tag:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 76, 115, 0.3);
}

/* Özet Banner */
.bolum-ozet-banner {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 25px rgba(13, 76, 115, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bolum-ozet-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.bolum-ozet-banner:hover::before {
    left: 100%;
}

.bolum-ozet-banner:hover {
    text-decoration: none;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(13, 76, 115, 0.4);
}

.bolum-ozet-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.bolum-ozet-banner-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.bolum-ozet-banner-text {
    flex-grow: 1;
}

.bolum-ozet-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bolum-ozet-banner-desc {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.bolum-ozet-banner-arrow {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bolum-ozet-banner:hover .bolum-ozet-banner-arrow {
    transform: translateX(10px);
}

/* Fragmanlar Bölümü */
.bolum-fragmanlar-section {
    margin-top: 3rem;
}

.bolum-section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bolum-fragman-card {
    display: block;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
}

.bolum-fragman-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(13, 76, 115, 0.25);
}

.bolum-fragman-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-gradient);
}

.bolum-fragman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bolum-fragman-card:hover .bolum-fragman-image img {
    transform: scale(1.1);
}

.bolum-fragman-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bolum-fragman-card:hover .bolum-fragman-overlay {
    opacity: 1;
}

.bolum-fragman-play {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.bolum-fragman-card:hover .bolum-fragman-play {
    transform: scale(1);
}

.bolum-fragman-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.bolum-fragman-content {
    padding: 1rem;
}

.bolum-fragman-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.bolum-fragman-date {
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

/* Sidebar İlgili Bölümler */
.bolum-sidebar {
    position: sticky;
    top: 100px;
}

.bolum-sidebar-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.ilgili-bolumler-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ilgili-bolum-item {
    display: block;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.ilgili-bolum-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(13, 76, 115, 0.2);
}

.ilgili-bolum-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: var(--bg-gradient);
}

.ilgili-bolum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.ilgili-bolum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ilgili-bolum-item:hover .ilgili-bolum-overlay {
    opacity: 1;
}

.ilgili-bolum-overlay i {
    font-size: 2.5rem;
    color: white;
}

.ilgili-bolum-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.ilgili-bolum-content {
    padding: 1rem;
}

.ilgili-bolum-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.ilgili-bolum-date {
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .bolum-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .bolum-ozet-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bolum-ozet-banner-icon {
        font-size: 3rem;
    }
    
    .bolum-tanitim-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Swiper Slider Stilleri */
.swiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: 'bootstrap-icons' !important;
    font-size: 24px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
    line-height: 1 !important;
    display: block !important;
}

.swiper-button-prev:after {
    content: '\f284' !important; /* bi-chevron-left Bootstrap Icons */
}

.swiper-button-next:after {
    content: '\f285' !important; /* bi-chevron-right Bootstrap Icons */
}

/* Eğer Bootstrap Icons yüklenmemişse Unicode karakterler kullan */
.swiper-button-prev:not([style*="font-family"]):after {
    content: '‹' !important;
    font-family: Arial, sans-serif !important;
    font-size: 28px !important;
}

.swiper-button-next:not([style*="font-family"]):after {
    content: '›' !important;
    font-family: Arial, sans-serif !important;
    font-size: 28px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color) !important;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white !important;
}

/* Mobil için slider düzenlemeleri */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .swiper-pagination {
        margin-top: 15px;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Hero Buttons Mobil - Tek satırda kalacak */
@media (max-width: 576px) {
    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        min-width: auto;
        flex: 1 1 auto;
    }
    
    .hero-buttons .btn i {
        font-size: 0.9rem;
    }
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Section spacing */
section {
    margin-bottom: 4rem;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(13, 76, 115, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Alert */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow);
}

/* Table */
.table {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background: var(--bg-gradient);
    color: var(--text-light);
}

/* Form */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 76, 115, 0.25);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Haberler Sidebar (Hero Section içinde) */
.haberler-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#haberlerCarousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

#haberlerCarousel .carousel-inner {
    flex: 1;
    display: flex;
    align-items: stretch;
}

#haberlerCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

#haberlerCarousel .carousel-item > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#haberlerCarousel .carousel-control-prev,
#haberlerCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s;
}

#haberlerCarousel .carousel-control-prev {
    left: 10px;
}

#haberlerCarousel .carousel-control-next {
    right: 10px;
}

#haberlerCarousel .carousel-control-prev:hover,
#haberlerCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

#haberlerCarousel .carousel-control-prev-icon,
#haberlerCarousel .carousel-control-next-icon {
    filter: invert(1);
}

#haberlerCarousel .carousel-indicators {
    margin-bottom: 10px;
    position: relative;
}

#haberlerCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

#haberlerCarousel .carousel-indicators button.active {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
    }
}

/* Haber Kartları */
.haber-card {
    transition: all 0.3s;
    border: none;
    overflow: hidden;
}

.haber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.haber-card .card-img-top {
    transition: transform 0.5s;
}

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

.haber-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    .hero-section .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Özetler Sayfası Link Kartları */
.ozet-link-card {
    text-decoration: none;
    display: block;
}

.ozet-link-card:hover {
    text-decoration: none;
}

.ozet-link-card > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--accent-color) !important;
}

.ozet-linkler {
    border-top: 2px solid rgba(13, 76, 115, 0.2) !important;
}

.ozet-linkler .ozet-link-card > div {
    height: 100%;
}

@media (max-width: 768px) {
    .ozet-linkler .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Özetler Sayfası - Özet Butonu */
.ozet-buton {
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13, 76, 115, 0.3);
}

.ozet-buton-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.ozet-buton:hover .ozet-buton-overlay {
    left: 100%;
}

.ozet-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 76, 115, 0.4);
}

/* Özet Detay Kartları */
.ozet-detay-card {
    border: 2px solid rgba(13, 76, 115, 0.1);
    transition: all 0.3s;
}

.ozet-detay-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.ozet-afis-wrapper {
    position: relative;
    overflow: hidden;
}

.ozet-afis-wrapper img {
    transition: transform 0.5s;
}

.ozet-detay-card:hover .ozet-afis-wrapper img {
    transform: scale(1.05);
}

.ozet-ac-buton {
    background: var(--bg-gradient) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s;
}

.ozet-ac-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 76, 115, 0.3);
}

.ozet-ac-buton[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
}

.ozet-ac-buton[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.ozet-detay-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

/* Smooth scroll için */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .ozet-afis-wrapper {
        min-height: 200px !important;
    }
    
    .ozet-detay-content {
        padding: 1.5rem;
        font-size: 1rem !important;
    }
}

/* Bölüm Detay Sayfası */
.bolum-hakkinda-content {
    color: #555;
}

.bolum-ozet-content {
    color: #333;
    line-height: 1.9;
}

/* Canlı İzle Bölümü */
.canli-izle-section {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%);
    border-bottom: 3px solid var(--primary-color);
}

.canli-izle-section.aktif {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(13, 76, 115, 0.1) 100%);
    border-bottom: 3px solid #dc3545;
}

.live-indicator .badge {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.canli-iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.canli-iframe-wrapper iframe {
    display: block;
}

.canli-bilgilendirme {
    background: linear-gradient(135deg, #ffffff 0%, rgba(13, 76, 115, 0.02) 100%);
    border: 2px solid rgba(13, 76, 115, 0.1);
}

.canli-bilgilendirme .card-body {
    background: transparent;
}

@media (max-width: 768px) {
    .canli-izle-section .canli-iframe-wrapper iframe {
        height: 300px !important;
    }
    
    .canli-bilgilendirme .row {
        text-align: center;
    }
    
    .canli-iframe-wrapper iframe {
        height: 400px !important;
    }
}

/* Navbar Canlı İzle Butonu */
.navbar .btn-danger {
    font-weight: 700;
    letter-spacing: 0.5px;
    border-width: 2px;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

/* Oyuncu Detay Sayfası */
.oyuncu-hero-section {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(13, 76, 115, 0.1);
}

.oyuncu-resim-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.oyuncu-resim-wrapper img {
    transition: transform 0.5s;
}

.oyuncu-resim-wrapper:hover img {
    transform: scale(1.05);
}

.oyuncu-bilgi-header {
    padding: 1rem 0;
}

.info-item {
    display: flex;
    align-items-center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item i {
    font-size: 1.2rem;
}

.info-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.info-item span {
    color: #555;
}

/* Aile İlişkileri */
.aile-iliski-listesi {
    position: relative;
}

.aile-item {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(13, 76, 115, 0.1);
    transition: all 0.3s;
}

.aile-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.aile-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 76, 115, 0.1);
    border-radius: 50%;
}

.aile-resim {
    transition: transform 0.3s;
}

.aile-item:hover .aile-resim {
    transform: scale(1.1);
    border-color: var(--accent-color) !important;
}

.hover-shadow {
    transition: all 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background: rgba(13, 76, 115, 0.02) !important;
}

@media (max-width: 768px) {
    .oyuncu-hero-section {
        padding: 2rem 1.5rem;
    }
    
    .oyuncu-bilgi-header h1 {
        font-size: 2rem !important;
    }
    
    .oyuncu-bilgi-header h2 {
        font-size: 1.25rem !important;
    }
}

/* İlgili Sayfalar - Haber Detay */
.ilgili-sayfalar-container {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(13, 76, 115, 0.1);
}

.ilgili-sayfalar-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(13, 76, 115, 0.1);
}

.ilgili-sayfalar-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ilgili-sayfalar-header h2 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.ilgili-sayfalar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ilgili-sayfa-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ilgili-sayfa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.ilgili-bolum-card::before {
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.ilgili-ozet-card::before {
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.ilgili-fragman-card::before {
    background: linear-gradient(180deg, #ffc107 0%, #e0a800 100%);
}

.ilgili-sayfa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(13, 76, 115, 0.2);
}

.ilgili-sayfa-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.ilgili-sayfa-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.ilgili-bolum-card .ilgili-sayfa-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.ilgili-ozet-card .ilgili-sayfa-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.ilgili-fragman-card .ilgili-sayfa-icon {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.ilgili-sayfa-card:hover .ilgili-sayfa-icon {
    transform: scale(1.1) rotate(5deg);
}

.ilgili-sayfa-content {
    flex: 1;
    min-width: 0;
}

.ilgili-sayfa-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.ilgili-sayfa-desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    transition: color 0.3s ease;
}

.ilgili-sayfa-thumbnail {
    margin-top: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #f0f0f0;
}

.ilgili-sayfa-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.ilgili-sayfa-card:hover .ilgili-sayfa-thumbnail img {
    transform: scale(1.1);
}

.ilgili-sayfa-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 76, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.ilgili-sayfa-card:hover .ilgili-sayfa-arrow {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(5px);
}

.ilgili-sayfa-card:hover .ilgili-sayfa-title {
    color: var(--primary-color);
}

.ilgili-sayfa-card:hover .ilgili-sayfa-desc {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .ilgili-sayfalar-container {
        padding: 1.5rem;
    }
    
    .ilgili-sayfalar-header h4 {
        font-size: 1.25rem;
    }
    
    .ilgili-sayfalar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ilgili-sayfa-card {
        padding: 1.25rem;
    }
    
    .ilgili-sayfa-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .ilgili-sayfa-title {
        font-size: 1rem;
    }
    
    .ilgili-sayfa-thumbnail {
        min-height: 120px;
    }
}

/* TRT1 Foto Galeri */
#trt1-gallery .card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

#trt1-gallery .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 76, 115, 0.2) !important;
}

#trt1-gallery .card-img-top {
    transition: transform 0.5s ease;
}

#trt1-gallery .card:hover .card-img-top {
    transform: scale(1.05);
}

#trt1-gallery a {
    text-decoration: none;
    color: inherit;
}

#trt1-gallery a:hover {
    text-decoration: none;
    color: inherit;
}

/* Müzikler Sayfası Özel Stiller */
.muzik-card {
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.05) 0%, rgba(26, 107, 58, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.muzik-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 76, 115, 0.1) 0%, rgba(26, 107, 58, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.muzik-card:hover::before {
    opacity: 1;
}

.muzik-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(13, 76, 115, 0.25);
}

.muzik-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-gradient);
}

.muzik-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.muzik-card:hover .muzik-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.muzik-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.muzik-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.muzik-card:hover .muzik-card-overlay {
    opacity: 1;
}

.muzik-card-play {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.muzik-card:hover .muzik-card-play {
    transform: scale(1);
}

.muzik-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.muzik-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.muzik-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.muzik-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 76, 115, 0.1);
}

.muzik-card-date {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.muzik-card-action {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.muzik-card:hover .muzik-card-action {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Müzikler Hero */
.muzikler-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.muzikler-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.muzikler-hero-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.muzikler-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.muzikler-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .muzikler-hero {
        padding: 2rem 1.5rem;
    }
    
    .muzikler-hero-icon {
        font-size: 3.5rem;
    }
    
    .muzikler-hero h1 {
        font-size: 2rem;
    }
    
    .muzikler-hero p {
        font-size: 1rem;
    }
    
    .muzik-card-image {
        height: 200px;
    }
    
    .muzik-card-content {
        padding: 1rem;
    }
}
