:root {
    --gold: #D4AF37;
    --gold-dark: #B8962E;
    --gold-light: #F5E6A3;
    --black: #1a1a1a;
    --gray: #666;
    --gray-light: #f5f5f5;
    --white: #fff;
    --blue-gradient: linear-gradient(transparent, rgba(0,60,120,0.85));
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
    --font: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar {
    background: var(--gold);
    padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: flex-end; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--white); font-size: 14px; }
.social-links a:hover { opacity: 0.8; color: var(--white); }

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; display: block; }

.main-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.main-nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.main-nav a.active, .main-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 4px 0;
    cursor: pointer;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 8px 0;
    z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: none;
}
.nav-dropdown-menu a:hover { background: var(--gray-light); color: var(--gold); }

.header-actions { display: flex; gap: 8px; }
.search-toggle, .menu-toggle {
    width: 44px; height: 44px;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-toggle { display: none; }

.search-overlay {
    display: none;
    background: var(--gray-light);
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 150;
}
.search-overlay.active { display: block; }
.search-form-large {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}
.search-form-large input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font);
}
.search-form-large button {
    padding: 14px 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
}

/* Hero Featured */
.hero-featured { padding: 30px 0; }
.hero-scroll { width: 100%; }
.hero-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Bio card (anasayfa + grid) */
.bio-card {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s, transform 0.3s;
}
.bio-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: inherit;
}
.bio-card-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.bio-card-photo img,
.bio-card-photo .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bio-card-photo .placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    color: var(--gray);
    font-size: 40px;
    min-height: 0;
}
.bio-card-badge {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
    max-width: 92%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.bio-card-body {
    padding: 10px 12px 12px;
    text-align: center;
}
.bio-card-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 6px;
}
.bio-card-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
}
.bio-card-stats li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--black);
    font-weight: 500;
}
.bio-card-stats i { color: var(--gold); font-size: 11px; }
.bio-card-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    margin: 0 0 8px;
    line-height: 1.3;
}
.bio-card-deceased {
    background: #050505;
    border-color: #111;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.bio-card-deceased .bio-card-body h3,
.bio-card-deceased .bio-card-death {
    color: #fff;
}
.bio-card-deceased .bio-card-photo img.bio-photo-deceased,
.bio-card-deceased .bio-card-photo img {
    filter: grayscale(100%) contrast(1.08) brightness(0.9);
}
.bio-card-badges-deceased {
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: calc(100% - 16px);
}
.bio-card-badge-red {
    position: static;
    transform: none;
    background: #c62828;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
}
.bio-card-death {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    margin: 0;
    color: #e8e8e8;
}
.bio-card-death i { color: #cfcfcf; font-size: 11px; }
.bio-list-grid { margin-bottom: 0; }
.page-listing { padding: 30px 0 50px; }
@media (max-width: 768px) {
    .page-listing { padding: 20px 16px 40px; }
    .page-listing .container { padding-left: 16px; padding-right: 16px; }
    .bio-list-grid { gap: 12px; }
}
.hero-bio-card.bio-card-name-only .bio-card-body {
    padding: 14px 12px 16px;
}
.hero-bio-card.bio-card-name-only .bio-card-body h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 0;
}

/* Home Search Bar */
.home-search-section {
    background: var(--gray-light);
    padding: 28px 0;
    margin-bottom: 30px;
}
.home-search-box {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}
.home-search-box input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
    font-family: var(--font);
    outline: none;
}
.home-search-box button {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
}
.home-search-wrap { position: relative; max-width: 800px; margin: 0 auto; }
.overlay-search-wrap { max-width: 700px; }
.search-suggest-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--shadow);
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
    z-index: 200;
}
.search-suggest-list li { border-bottom: 1px solid #f0f0f0; }
.search-suggest-list li:last-child { border-bottom: none; }
.search-suggest-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--black);
}
.search-suggest-list a:hover { background: var(--gray-light); color: var(--black); }
.search-suggest-list img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.search-suggest-list .suggest-text { display: flex; flex-direction: column; gap: 2px; }
.search-suggest-list .suggest-text strong { font-size: 14px; }
.search-suggest-list .suggest-text small { font-size: 12px; color: var(--gold); font-weight: 600; }

/* Home series blocks */
.home-series-block {
    padding: 0 0 28px;
    margin-top: -10px;
}
.home-series-block .section-header { margin-bottom: 16px; }
.home-series-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.home-series-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    background: var(--white);
    min-width: 200px;
    flex: 1 1 220px;
    max-width: 320px;
    transition: box-shadow 0.2s;
}
.home-series-chip:hover { box-shadow: var(--shadow); color: inherit; }
.home-series-chip img {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.home-series-chip-icon {
    width: 48px;
    height: 64px;
    background: var(--gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.home-series-chip-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.home-series-chip-text strong { font-size: 14px; line-height: 1.2; }
.home-series-chip-text small { font-size: 12px; color: var(--gray); }
.home-popular-series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}
.home-popular-series-card {
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}
.home-popular-series-card img,
.home-popular-series-card .placeholder-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.home-popular-series-info {
    padding: 10px;
    text-align: center;
}
.home-popular-series-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.home-series-views {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}
.home-series-popular { padding-bottom: 36px; border-bottom: 1px solid #eee; margin-bottom: 10px; }

/* Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding-bottom: 50px;
}
.main-content { min-width: 0; }

/* Category Section */
.category-section { margin-bottom: 40px; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
}
.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}
.section-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.profile-card {
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: var(--white);
}
.profile-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.profile-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.profile-card-info {
    padding: 12px;
    text-align: center;
}
.profile-card-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.profile-card-info .cat { font-size: 11px; color: var(--gold); font-weight: 600; }
.series-card-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 4px;
}
.series-card-meta .series-status,
.series-card-meta .cat {
    margin: 0;
    line-height: 1.3;
}
.series-card-years {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    margin: 4px 0 0;
    line-height: 1.3;
}
.profile-card-meta { font-size: 11px; color: var(--gray); margin-top: 4px; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-box {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.sidebar-title {
    background: var(--gold);
    color: var(--white);
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
}
.sidebar-list { list-style: none; }
.sidebar-list li {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.2s;
}
.sidebar-list li:hover { background: var(--gray-light); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list-link {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    color: inherit;
}
.sidebar-list-link:hover { color: inherit; }
.sidebar-list-enhanced img,
.sidebar-thumb-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.sidebar-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    color: var(--gold);
    font-size: 22px;
}
.sidebar-list-enhanced .info {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.sidebar-list-enhanced .info h4 { font-size: 14px; font-weight: 700; line-height: 1.25; }
.sidebar-list-enhanced .sidebar-cat { font-size: 12px; color: var(--gold); font-weight: 600; display: block; }
.sidebar-views {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sidebar-views i { color: var(--gold); }

/* Sidebar – günün dizileri */
.sidebar-today-series {
    margin-top: 20px;
}
.sidebar-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px 10px;
    border-bottom: 3px solid var(--gold);
}
.sidebar-day-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}
.sidebar-day-title i { font-size: 14px; color: var(--black); }
.sidebar-day-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}
.sidebar-day-link:hover { color: var(--gold-dark); }
.sidebar-day-list {
    list-style: none;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-day-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    background: var(--white);
    width: 100%;
    color: inherit;
    transition: box-shadow 0.2s;
}
.sidebar-day-card:hover {
    box-shadow: var(--shadow);
    color: inherit;
}
.sidebar-day-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-day-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-day-thumb-icon {
    color: var(--gold);
    font-size: 22px;
}
.sidebar-day-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    text-align: left;
}
.sidebar-day-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}
.sidebar-day-text small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* Sidebar – en çok okunan diziler (2x2) */
.sidebar-popular-series { margin-top: 20px; }
.sidebar-popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 14px 14px;
}
.sidebar-popular-item {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    color: inherit;
    transition: box-shadow 0.2s;
}
.sidebar-popular-item:hover { box-shadow: var(--shadow); color: inherit; }
.sidebar-popular-poster {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--white) 100%);
}
.sidebar-popular-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sidebar-popular-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--black);
    font-size: 28px;
    opacity: 0.3;
}
.sidebar-popular-meta {
    padding: 8px 8px 10px;
    text-align: center;
}
.sidebar-popular-meta strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
}
.sidebar-popular-meta small {
    font-size: 10px;
    color: var(--gold);
    font-weight: 600;
}
.sidebar-popular-meta small i { margin-right: 3px; }

/* TV'de Bugün sayfası */
.tv-schedule-page {
    padding: 28px 0 50px;
    max-width: 1280px;
}
.tv-page-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 6px;
}
.tv-page-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
}
.tv-day-block { margin-bottom: 36px; }
.tv-day-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.tv-day-heading h2 {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    padding-bottom: 6px;
    border-bottom: 3px solid #c0392b;
    margin: 0;
}
.tv-today-badge {
    font-size: 11px;
    font-weight: 700;
    background: #c0392b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tv-day-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
}
.tv-schedule-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.tv-schedule-card-link {
    display: block;
    color: inherit;
    transition: transform 0.2s;
}
.tv-schedule-card-link:hover { transform: translateY(-2px); color: inherit; }
.tv-schedule-card-link.is-static { cursor: default; }
.tv-schedule-poster {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.tv-schedule-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tv-schedule-info { padding: 10px 2px 0; }
.tv-schedule-info h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--black);
}
.tv-schedule-channel,
.tv-schedule-time {
    font-size: 13px;
    color: #888;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tv-schedule-channel i,
.tv-schedule-time i {
    color: #999;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.btn-tv-cast {
    display: inline-block;
    width: auto;
    margin: 8px 0 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    padding: 6px 12px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    text-align: center;
    background: var(--white);
    transition: background 0.2s, color 0.2s;
}
.tv-day-empty {
    color: #999;
    font-size: 14px;
    padding: 8px 0 16px;
    margin: 0;
}
.profile-card-info .series-status-live {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}
.btn-tv-cast:hover {
    background: var(--gold);
    color: var(--white);
}
.tv-empty { text-align: center; padding: 40px; color: #999; }
.page-header-sub { margin-top: 8px; opacity: 0.9; }

/* Dizi detay */
.series-hero-band { margin-bottom: 24px; overflow: hidden; }
.series-profile-top.profile-top {
    grid-template-columns: 300px 1fr;
    gap: 28px;
}
.series-profile-top .profile-info {
    min-width: 0;
}
.series-profile-top .profile-photo img { border-radius: var(--radius); }
.series-profile-top .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 12px;
}
.series-profile-top .info-item {
    padding: 8px 10px;
    gap: 5px;
    border-radius: 8px;
}
.series-profile-top .info-label {
    font-size: 11px;
    padding: 4px 8px 4px 10px;
    border-left-width: 3px;
}
.series-profile-top .info-value {
    font-size: 15px;
    padding-left: 2px;
}
.series-meta-dates {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
}
.series-meta-dates-bottom {
    margin-top: 28px;
    margin-bottom: 12px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.series-description-bottom {
    margin-bottom: 0;
    padding-top: 0;
    border-top: none;
}
.series-meta-dates .dates-info {
    font-size: 13px;
    color: var(--gray);
}
.series-description-block {
    margin-top: 0;
    padding-top: 14px;
    border-top: 3px solid var(--gold);
}
.series-description-scroll {
    max-height: 240px;
    overflow-y: auto;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px 18px;
    line-height: 1.8;
    font-size: 14px;
    color: var(--black);
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #eee;
}
.series-description-scroll::-webkit-scrollbar { width: 8px; }
.series-description-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
.series-description-scroll p { margin-bottom: 0.75em; }
.series-description-scroll p:last-child { margin-bottom: 0; }
.series-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 4px;
}
.series-title-row h1 { margin-bottom: 0; }
.series-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}
.series-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.series-status-live { color: #1a8f3c; text-transform: none; }
.series-status-live .series-status-dot { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
.series-status-ended { color: #c62828; text-transform: none; }
.series-status-ended .series-status-dot { background: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2); }
.series-status-soon { color: #1565c0; text-transform: none; }
.series-status-soon .series-status-dot { background: #2196f3; box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.25); }
.profile-card-info .series-status-ended { font-size: 12px; margin-top: 6px; }
.listing-sort-bar { display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px; padding: 14px 16px; background: #fff; border: 1px solid #eee; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.listing-sort-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.listing-filter-row { padding-top: 12px; border-top: 1px solid #eee; }
.listing-sort-label { font-weight: 600; color: #555; font-size: 14px; min-width: 52px; }
.listing-sort-link { color: #666; text-decoration: none; font-size: 14px; padding: 6px 12px; border-radius: 999px; border: 1px solid transparent; }
.listing-sort-link:hover { color: var(--gold-dark); }
.listing-sort-link.is-active { background: rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.35); color: #8a6d12; font-weight: 600; }
.listing-sort-divider { width: 1px; height: 20px; background: #ddd; margin: 0 4px; }
.listing-view-count { margin-top: 8px; font-size: 12px; color: #666; font-weight: 600; }
.listing-view-count i { color: var(--gold); margin-right: 4px; }
.series-cast-sort-bar { margin-bottom: 20px; }
.series-cast-sort-bar .listing-sort-link { background: none; border: 1px solid transparent; cursor: pointer; font: inherit; }
.faq-video-split {
    display: grid;
    grid-template-columns: minmax(200px, 340px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.faq-list-col .section-title { margin-top: 0; }
.series-youtube-lazy {
    position: relative;
    aspect-ratio: 9 / 16;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    border: 2px solid var(--gold);
}
.series-youtube-lazy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.series-youtube-lazy .yt-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
}
.series-youtube-lazy.is-loaded { cursor: default; border-color: transparent; }
.series-youtube-lazy iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 992px) {
    .faq-video-split { grid-template-columns: 1fr; }
    .series-youtube-lazy { max-width: min(100%, 360px); margin: 0 auto; }
}
@media (max-width: 768px) {
    .faq-video-split { gap: 20px; }
    .series-youtube-lazy { max-width: min(100%, 380px); width: 100%; }
    .series-cast-bio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
.series-split-bottom { align-items: start; }
.series-split-bottom .series-cast-block {
    max-height: none;
    overflow: visible;
}
.series-ratings-block {
    display: flex;
    flex-direction: column;
    min-height: 0;
    align-self: start;
    position: sticky;
    top: 16px;
}
.series-cast-bio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.series-cast-bio-grid .bio-card-body {
    padding: 12px 14px 14px;
}
.series-cast-bio-grid .bio-card-body h3 {
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}
.bio-card-character {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin: 0 0 8px;
    line-height: 1.35;
}
.series-cast-bio-grid .bio-card-character {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    font-style: italic;
    margin: 2px 0 10px;
}
.series-cast-bio-grid .bio-card-stats {
    gap: 6px 10px;
}
.series-cast-bio-grid .bio-card-stats li {
    font-size: 12px;
}
.series-cast-bio-grid .bio-card-stats i {
    font-size: 11px;
}
.series-cast-bio-grid .bio-card-badge {
    font-size: 10px;
    padding: 4px 10px;
    bottom: 8px;
}
.ratings-table-wrap {
    flex: 0 1 auto;
    min-height: 0;
    max-height: 420px;
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #eee;
}
.ratings-table-wrap::-webkit-scrollbar { width: 8px; height: 8px; }
.ratings-table-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
.ratings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ratings-table th,
.ratings-table td {
    padding: 10px 12px;
    border: 1px solid #eee;
    text-align: left;
}
.ratings-table th { background: var(--gold-light); font-weight: 700; }
.section-empty { color: #999; padding: 16px 0; }
.related-series-grid { max-width: 100%; }
.page-bottom-content {
    padding: 30px 0 50px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}
.page-bottom-editor { line-height: 1.8; }
.page-bottom-editor img { max-width: 100%; height: auto; }

/* Admin bar (giriş yapmış yönetici) */
.admin-front-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 10001;
}
.admin-front-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.btn-admin-back {
    background: var(--gold);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}
.btn-admin-back:hover { color: #1a1a1a; background: var(--gold-dark); }

/* Profile Page */
.profile-page { padding: 30px 0 50px; }
.profile-hero-band {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe9a8 45%, #f5d76e 100%);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 36px;
    box-shadow: var(--shadow);
}
.profile-hero-band.profile-hero-deceased {
    background: linear-gradient(135deg, #1b1b1b 0%, #050505 58%, #232323 100%);
    color: #fff;
}
.profile-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}
.profile-left { display: flex; flex-direction: column; gap: 16px; }
.profile-photo {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}
.profile-hero-deceased .profile-photo {
    background: #050505;
    border: 2px solid #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.profile-photo img,
.profile-placeholder {
    width: 100%;
    aspect-ratio: 3/4.2;
    object-fit: cover;
    object-position: top center;
}
.profile-placeholder { display: flex; align-items: center; justify-content: center; font-size: 48px; color: #ccc; }
.profile-hero-deceased .profile-photo img {
    filter: grayscale(100%) contrast(1.08) brightness(0.9);
}
.profile-hero-deceased .profile-placeholder {
    background: linear-gradient(145deg, #111 0%, #050505 55%, #262626 100%);
    color: #777;
}
.profile-social { display: flex; flex-direction: column; gap: 8px; }
.social-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.85);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border: 1px solid rgba(0,0,0,0.06);
}
.social-chip i { font-size: 18px; width: 22px; text-align: center; flex-shrink: 0; }
.social-chip span { font-weight: 600; }
.social-chip.social-instagram i, .social-chip.social-instagram span { color: #E4405F; }
.social-chip.social-twitter i, .social-chip.social-twitter span { color: #000; }
.social-chip.social-facebook i, .social-chip.social-facebook span { color: #1877F2; }
.social-chip.social-tiktok i, .social-chip.social-tiktok span { color: #010101; }
.social-chip.social-youtube i, .social-chip.social-youtube span { color: #FF0000; }
.social-chip:hover { background: #fff; filter: brightness(0.92); }
.share-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.7);
    padding: 12px 14px;
    border-radius: 8px;
}
.profile-hero-deceased .share-block {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.share-label { font-weight: 700; font-size: 14px; color: var(--black); white-space: nowrap; }
.profile-hero-deceased .share-label { color: #fff; }
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: transform 0.2s;
}
.share-btn:hover { transform: scale(1.1); color: var(--white); }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000; }
.share-btn.wa { background: #25d366; }
.share-btn.li { background: #0a66c2; }

.profile-info {
    width: 100%;
    min-width: 0;
}
.profile-info h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.profile-hero-deceased .profile-info h1 {
    color: #fff;
}
.profile-excerpt {
    font-size: 17px;
    color: #444;
    margin: 12px 0 20px;
    line-height: 1.65;
    width: 100%;
}
.profile-hero-deceased .profile-excerpt {
    color: #e2e2e2;
}
.meta-section.dates-only { margin-top: 16px; }
.profile-info .category-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.profile-info .category-badge,
.profile-info a.category-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    text-decoration: none;
    transition: background 0.2s;
}
.profile-hero-deceased .profile-info .category-badge,
.profile-hero-deceased .profile-info a.category-badge {
    background: #c62828;
    color: #fff;
}
.profile-info a.category-badge:hover {
    background: var(--gold-dark);
    color: var(--white);
}
.profile-hero-deceased .profile-info a.category-badge:hover {
    background: #a91f1f;
}
.profile-info-no-excerpt .category-badge-list {
    margin-bottom: 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 20px;
    width: 100%;
    align-items: stretch;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    min-width: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.profile-hero-deceased .info-item {
    background: #101010;
    border-color: #2f2f2f;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}
.info-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #5c4a00;
    padding: 6px 10px 6px 12px;
    border-left: 4px solid var(--gold);
    line-height: 1.3;
    background: linear-gradient(90deg, #fff9e0 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 4px;
}
.profile-hero-deceased .info-label {
    color: #f2f2f2;
    border-left-color: #c62828;
    background: linear-gradient(90deg, #202020 0%, rgba(40, 40, 40, 0.55) 100%);
}
.info-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
    padding-left: 4px;
}
.profile-hero-deceased .info-value {
    color: #fff;
}
.info-value a.link-tag {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
    font-size: inherit;
}
.profile-hero-deceased .info-value a.link-tag {
    color: #f0f0f0;
    border-bottom-color: #c62828;
}
.info-value a.link-tag:hover { color: var(--black); }
.profile-hero-deceased .info-value a.link-tag:hover { color: #fff; }

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}
.profile-split-bottom {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 28px;
    align-items: start;
    margin-bottom: 40px;
}
.profile-split-left { min-width: 0; }
.profile-split-right { min-width: 0; }
.profile-split-right-full {
    grid-column: 1 / -1;
}
.filmography-section { margin-bottom: 0; }
.filmography-cards { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.filmography-cards-collapsed:not(.is-expanded) .film-card-hidden { display: none; }
.filmography-show-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
    position: relative;
    z-index: 2;
    transition: color 0.2s;
}
.filmography-show-all:hover { color: var(--gold); }
.filmography-show-all i {
    font-size: 12px;
    transition: transform 0.2s;
}
.filmography-show-all[aria-expanded="true"] i { transform: rotate(180deg); }
.film-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border: 1px solid #eee;
}
.film-details { min-width: 0; padding-right: 4px; }
.film-poster img,
.film-poster-placeholder {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}
.film-poster-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 22px;
}
.film-title { font-weight: 800; font-size: 17px; line-height: 1.3; }
.film-title a { color: var(--black); }
.film-title a:hover { color: var(--gold-dark); }
.film-character {
    font-size: 15px;
    color: #444;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.35;
}
.film-year-inline {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-top: 6px;
    line-height: 1.3;
}

.biography-content {
    background: var(--gray-light);
    padding: 28px;
    border-radius: var(--radius);
    line-height: 1.8;
}
.biography-content h2 { font-size: 20px; margin-bottom: 16px; color: var(--black); }

/* FAQ */
.faq-section { margin: 40px 0; }
.faq-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}
.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gold);
    color: var(--white);
    transition: background 0.2s, color 0.2s;
}
.faq-question i { color: var(--white); }
.faq-item:not(.active) .faq-question:hover {
    background: var(--gold-dark);
    color: var(--white);
}
.faq-item.active .faq-question {
    background: var(--white);
    color: var(--black);
}
.faq-item.active .faq-question i { color: var(--gold-dark); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}
.faq-item.active .faq-answer {
    padding: 16px 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* Gallery */
.gallery-section { margin: 40px 0; }
.gallery-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.profile-gallery img,
.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Sources & Dates */
.meta-section {
    background: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 30px 0;
}
.meta-section h3 { font-size: 16px; margin-bottom: 12px; }
.sources-list { list-style: none; }
.sources-list li { padding: 6px 0; }
.sources-list a { color: var(--gold); font-weight: 500; }
.dates-info { margin-top: 16px; font-size: 13px; color: var(--gray); }

/* Related */
.related-section { padding: 40px 0; background: var(--gray-light); }
.related-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
/* Profil sayfası — az kişi olsa da kartlar geniş kalsın */
.related-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.related-grid-wide .profile-card {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
}
.related-grid-wide .related-person-photo,
.related-grid-wide .related-person-photo img,
.related-grid-wide .related-person-photo .placeholder-img {
    width: 100%;
    display: block;
}
.related-grid-wide .related-person-photo img,
.related-grid-wide .related-person-photo .placeholder-img {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}
.related-grid-wide .related-person-photo .placeholder-img {
    min-height: 200px;
}
.related-grid-wide .profile-card-info {
    padding: 14px 12px 16px;
    text-align: center;
    background: var(--white);
    flex: 1;
}
.related-grid-wide .profile-card-info h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 6px;
    word-break: break-word;
}
.related-grid-wide .profile-card-info .cat {
    display: block;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1.3;
}
.related-grid-wide .profile-card-info .cat:empty::before {
    content: '—';
    color: #bbb;
}

/* Series Page */
.series-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 3px solid var(--gold);
    margin-bottom: 30px;
}
.series-header img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.series-cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}

/* Listing Pages */
.page-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 30px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-header-has-image .container {
    position: relative;
    z-index: 1;
}
.page-header h1 { font-size: 32px; font-weight: 800; }

/* Calculator */
.calculator-box {
    max-width: 600px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}
.calculator-box h2 { text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
}
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    width: 100%;
    text-align: center;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.result-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--gold-light);
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    display: none;
}
.result-box.show { display: block; }
.date-select-row,
.time-select-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 10px;
}
.time-select-row {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.time-sep {
    font-weight: 700;
    color: #666;
    text-align: center;
}
.date-select {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
    background: var(--white);
    appearance: auto;
    -webkit-appearance: menulist;
}
.date-select-full { width: 100%; }
.calc-note {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: -12px 0 20px;
}
.calc-location-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .date-select-row,
    .time-select-row,
    .calc-location-row {
        grid-template-columns: 1fr;
    }
    .time-select-row {
        grid-template-columns: 1fr auto 1fr;
    }
}

.calc-tools-grid {
    padding: 40px 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.calc-tools-grid .profile-card {
    padding: 40px 28px;
    text-align: center;
}
@media (max-width: 768px) {
    .calc-tools-grid {
        padding: 24px 16px 48px;
        gap: 20px;
    }
}
.contact-form-box {
    max-width: 640px;
    margin: 0 auto;
}
.contact-form-box .form-group { margin-bottom: 16px; }
.contact-form-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
}
.contact-form-box textarea { min-height: 140px; resize: vertical; }
.contact-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.contact-alert-success { background: #e8f5e9; color: #2e7d32; }
.contact-alert-error { background: #ffebee; color: #c62828; }

/* Schedule Table */
.schedule-table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.schedule-table th, .schedule-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.schedule-table th { background: var(--gold); color: var(--white); }
.schedule-table tr:hover { background: var(--gray-light); }

.professions-page { padding: 30px 0 50px; }
.professions-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.profession-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    color: inherit;
}
.profession-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: inherit;
}
.profession-card-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-light);
}
.profession-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.profession-card-label {
    background: #ececec;
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}
@media (max-width: 1200px) {
    .professions-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
    .professions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .professions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* Footer */
.site-footer {
    background: var(--black);
    color: #ccc;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}
.footer-col-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 16px;
}
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-logo img { height: 48px; width: auto; max-width: 100%; }
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2a2a2a;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}
.footer-col h4 { color: var(--gold); margin-bottom: 16px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
    flex-wrap: wrap;
}
.footer-copyright {
    margin: 0;
    text-align: left;
}
.footer-bottom-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}
.footer-bottom-links a { color: #aaa; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray);
}
.breadcrumb a { color: var(--gold); }

/* Placeholder */
.placeholder-img {
    background: linear-gradient(135deg, var(--gold-light), #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 48px;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: repeat(3, 1fr); }
    .related-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: repeat(2, 1fr); }
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .profile-top, .profile-bottom { grid-template-columns: 1fr; }
    .series-profile-top.profile-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .series-profile-top .profile-left {
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }
    .series-profile-top .info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .profile-split-bottom { grid-template-columns: 1fr; gap: 24px; }
    .series-ratings-block {
        position: static;
    }
    .series-ratings-block .ratings-table-wrap { max-height: 280px; }
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .series-cast-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .series-header { grid-template-columns: 1fr; }
    .tv-day-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    .main-nav.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero-featured .container { padding-left: 0; padding-right: 0; }
    .hero-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0 max(16px, calc((100vw - 100%) / 2 + 16px)) 8px;
        scrollbar-width: thin;
        scroll-snap-type: x mandatory;
    }
    .hero-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        grid-template-columns: unset;
        width: max-content;
        margin: 0 auto;
        padding: 0 2px;
    }
    .hero-grid .hero-bio-card {
        flex: 0 0 min(340px, calc(100vw - 40px));
        width: min(340px, calc(100vw - 40px));
        max-width: min(340px, calc(100vw - 40px));
        min-width: 0;
        scroll-snap-align: center;
    }
    .tv-day-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
    .tv-page-title { font-size: 22px; }
    .tv-day-heading h2 { font-size: 20px; }
    .hero-bio-card.bio-card-name-only .bio-card-body h3 {
        font-size: 18px;
    }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 12px;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .profile-grid, .related-grid, .series-cast-grid { grid-template-columns: 1fr 1fr; }
    .series-cast-bio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .related-grid-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
    .related-grid-wide .profile-card {
        min-width: 0;
        max-width: none;
    }
    .profile-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .profile-page { overflow-x: hidden; }
    .profile-top { grid-template-columns: 1fr; }
    .series-profile-top.profile-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .series-profile-top .profile-left {
        max-width: 260px;
        margin: 0 auto;
    }
    .series-profile-top .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .series-title-row h1 {
        font-size: clamp(20px, 5.5vw, 28px);
        line-height: 1.25;
        overflow-wrap: break-word;
        word-break: normal;
    }
    .info-grid { grid-template-columns: 1fr; }
    .film-card {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 10px 14px;
    }
    .film-poster img,
    .film-poster-placeholder { width: 56px; height: 76px; }
    .film-details { padding-right: 8px; }
    .profile-hero-band { padding: 18px; }
    .container { padding-left: 16px; padding-right: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer-bottom-links ul { justify-content: flex-start; }
}

.related-bio-grid{grid-template-columns:repeat(auto-fill,minmax(180px,1fr));max-width:none;margin:0}
.related-inline-section h2.section-title{margin-top:0;text-align:left;font-size:20px}
@media (max-width:768px){.related-bio-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}}
