/* =========================================================
   Placeholder (görsel yerine geçici gradient/etiket kutusu)
   ========================================================= */
.tg-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #0B132B 0%, #12384a 55%, #00BAC6 140%);
	color: rgba(255, 255, 255, 0.55);
	transition: transform 0.4s ease;
}
.tg-placeholder__icon { display: flex; }
.tg-placeholder__label { font-size: 11px; letter-spacing: 0.02em; }

.actor-card__placeholder,
.character-card__placeholder {
	background: linear-gradient(135deg, #CBD5E1, #94A3B8);
	color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   Genel bileşenler: rozet, buton
   ========================================================= */
.tg-badge {
	display: inline-flex;
	align-items: center;
	background: var(--color-accent-red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 4px 9px;
	border-radius: 4px;
	line-height: 1;
	white-space: nowrap;
}

.tg-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
}
.tg-btn--primary { background: var(--color-primary); color: #fff; }
.tg-btn--primary:hover { background: var(--color-primary-dark); }
.tg-btn--white { background: #fff; color: var(--color-navy); padding: 8px 16px; font-size: 13px; }
.tg-btn--white:hover { background: #F1F5F9; }
.tg-btn--secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.tg-btn--secondary:hover { background: rgba(255,255,255,0.25); }
.single-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.tg-section { margin: 40px 0; }

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.section-heading__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 19px;
	font-weight: 700;
	color: var(--color-heading);
}
.section-heading__title::before {
	content: "";
	display: block;
	width: 4px;
	height: 20px;
	background: var(--color-accent-red);
	border-radius: 2px;
	flex-shrink: 0;
}
.section-heading__icon { display: none; }
.section-heading__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--color-primary);
	white-space: nowrap;
}
.section-heading__link:hover { text-decoration: underline; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
	background: var(--header-bg);
	border-bottom: 1px solid var(--header-border);
	font-family: 'Poppins', 'Inter', sans-serif;
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-header--static { position: static; }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	padding-left: 24px;
	padding-right: 24px;
	gap: 40px;
}

.site-branding__link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.custom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.custom-logo-link img { height: 60px; width: auto; max-width: 300px; object-fit: contain; }
.site-branding__mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--header-accent);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transform: rotate(45deg);
}
.site-branding__mark span { transform: rotate(-45deg); }
.site-branding__wordmark { display: flex; flex-direction: column; line-height: 1.2; font-weight: 700; font-size: 15px; }
.site-branding__line--top { color: var(--header-text); }
.site-branding__line--bottom { color: var(--header-accent); font-size: 12px; font-weight: 500; }

.main-navigation { flex: 1; display: flex; justify-content: center; height: 100%; }
.main-navigation__list { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; height: 100%; }
.main-navigation__item { display: flex; align-items: center; height: 100%; }
.main-navigation__item a {
	display: inline-flex;
	align-items: center;
	height: 100%;
	color: var(--header-text);
	font-weight: 600;
	font-size: 16px;
	border-bottom: 2px solid transparent;
}
.main-navigation__item.is-active a,
.main-navigation__item a:hover,
.main-navigation__item.current-menu-item a {
	color: var(--header-accent);
	border-bottom-color: var(--header-accent);
}

.site-header__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.site-search { display: flex; align-items: center; background: var(--header-surface); border-radius: var(--radius-medium); height: 40px; padding: 0 5px 0 16px; gap: 8px; }
.site-search__input { border: none; background: transparent; outline: none; font-size: 14px; font-family: inherit; width: 150px; color: var(--color-heading); }
.site-search__input::placeholder { color: var(--header-muted); }
.site-search__button {
	width: 30px; height: 30px; border-radius: var(--radius-medium); background: var(--header-accent); color: #fff;
	border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.site-search__close { display: none; background: none; border: none; color: var(--color-muted); cursor: pointer; padding: 6px; flex-shrink: 0; }

.mobile-search-toggle { display: none; background: none; border: none; color: var(--header-text); cursor: pointer; padding: 8px; }

.language-switcher { position: relative; }
.language-switcher__button {
	display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-medium);
	height: 40px; padding: 0 14px; font-size: 15px; font-weight: 500; font-family: inherit; color: var(--header-text); cursor: pointer;
}
.language-switcher__flag { font-size: 14px; }
.language-switcher__chevron { width: 10px; height: 10px; }
.language-switcher__menu {
	position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--color-border);
	border-radius: var(--radius-medium); box-shadow: var(--shadow-card-hover); list-style: none; margin: 0; padding: 6px; min-width: 130px; z-index: 60;
}
.language-switcher__menu[hidden] { display: none; }
.language-switcher__menu li a { display: block; padding: 8px 10px; border-radius: 6px; font-size: 13px; color: var(--color-heading); }
.language-switcher__menu li a:hover { background: var(--header-surface); }

.mobile-toggle-btn { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger-line { width: 20px; height: 2px; background: var(--header-text); border-radius: 2px; }

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(11, 19, 43, 0.55);
	z-index: 85;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.mobile-menu-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Reklam alanları */
.ad-slot {
	position: relative;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-medium);
	background: #EEF2F6;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
}
.ad-slot--header-banner { min-height: 90px; }
.ad-slot__label { display: flex; align-items: center; gap: 8px; }

/* Gerçek reklam (görsel/HTML) render edildiğinde placeholder görünümü kalkar */
.ad-slot--filled {
	display: block;
	border: none;
	background: none;
	padding: 0;
	overflow: hidden;
}
.ad-slot__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-slot-wrapper { margin: 0 0 8px; }
.ad-slot__caption {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-muted);
	margin-bottom: 4px;
}

.ad-slot--mobile-banner { min-height: 70px; }
.ad-slot--inline { min-height: 120px; margin: 24px 0; }
.ad-slot--footer-banner { min-height: 100px; margin-bottom: 24px; }

/* Görünürlük: TG Tema Ayarları > Reklamlar'daki "Görünürlük" seçimi */
.ad-slot-wrapper.ad-slot--mobile-only,
.ad-slot.ad-slot--mobile-only { display: none; }
.ad-slot--rectangle {
	position: relative;
	flex-direction: column;
	gap: 6px;
	height: 100%;
	min-height: 250px;
}
.ad-slot__tag {
	position: absolute;
	top: 8px;
	left: 8px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-muted);
	background: rgba(255, 255, 255, 0.8);
	padding: 2px 6px;
	border-radius: 4px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 740px) minmax(0, 440px);
	gap: 20px;
	margin-top: 24px;
}
.hero-grid__side { display: flex; flex-direction: column; gap: 20px; }

.hero-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	color: #fff;
	min-height: 200px;
	font-family: 'Poppins', 'Inter', sans-serif;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease;
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card--main { height: 420px; }
.hero-grid__side .hero-card { flex: 1 1 0; }

.hero-card__media { position: absolute; inset: 0; }
.hero-card__media--main { background: #0B1D3A url('../images/hero-main-v2.webp') center / cover no-repeat; }
.hero-card__media--person { background: #0B1D3A url('../images/hero-person-v2.webp') center / cover no-repeat; }
.hero-card__media--video { background: #142031 url('../images/hero-video-v2.webp') center / cover no-repeat; }
/* Gerçek bir görsel seçiliyse (has-image) kurulum aşamasından kalma taslak
 * fotoğraf arka planı hiç istenmesin/boyanmasın — düz marka rengi kalsın,
 * üstteki gerçek <img> yüklenene kadar "yanlış fotoğraf" yanıp sönmesin. */
.hero-card__media--main.hero-card__media--has-image { background-image: none; background-color: #0B1D3A; }
.hero-card__media--person.hero-card__media--has-image { background-image: none; background-color: #0B1D3A; }
.hero-card__media--video.hero-card__media--has-image { background-image: none; background-color: #142031; }
.hero-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-card__scrim {
	position: absolute;
	inset: 0;
	/* Spec'teki 180deg/0.9→0.4→0 durakları, alt-hizalı metnin okunurluğu için
	   "to top" yönünde uygulanır (0% durağı - en koyu - alt kenarda olur). */
	background: linear-gradient(90deg, rgba(3, 16, 39, 0.98) 0%, rgba(3, 16, 39, 0.78) 42%, rgba(3, 16, 39, 0.16) 78%, rgba(3, 16, 39, 0.05) 100%),
		linear-gradient(0deg, rgba(3, 16, 39, 0.48) 0%, transparent 42%);
}
.hero-card__scrim--side { background: linear-gradient(90deg, rgba(3, 16, 39, 0.96) 0%, rgba(3, 16, 39, 0.82) 43%, rgba(3, 16, 39, 0.08) 100%); }

.hero-card__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 32px 44px; }
.hero-card__content--side { width: 64%; padding: 16px 24px; }

.hero-card__title { font-size: 36px; font-weight: 700; line-height: 1.28; margin: 12px 0 28px; max-width: 470px; color: #fff; }
.hero-card__title--sm { font-size: 18px; line-height: 1.35; font-weight: 600; margin: 8px 0 10px; color: #fff; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.hero-card__excerpt { font-size: 16px; line-height: 1.55; font-weight: 400; color: #fff; max-width: 470px; margin: 0 0 32px; }
.hero-card__excerpt--sm { font-size: 13px; line-height: 1.45; color: #fff; margin-bottom: 12px; max-width: 230px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }

.hero-card .tg-badge--overlay { width: auto; background: var(--color-accent-red); color: #fff; padding: 5px 11px; font-size: 11px; border-radius: 4px; }

.hero-card--main .tg-btn { width: 180px; height: 48px; padding: 0 24px; justify-content: space-between; border-radius: 8px; font-size: 16px; font-weight: 600; gap: 8px; }
.hero-card--main .tg-btn svg { width: 16px; height: 16px; }
.hero-grid__side .tg-btn { width: 152px; height: 40px; min-height: 40px; box-sizing: border-box; flex-shrink: 0; padding: 0 14px; justify-content: space-between; border-radius: 8px; font-size: 12px; font-weight: 600; line-height: 1; white-space: nowrap; gap: 6px; }
.hero-grid__side .tg-btn svg { width: 15px; height: 15px; }

.hero-card__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.hero-card__dot { width: 7px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.5); border: none; cursor: pointer; padding: 0; transition: var(--transition); }
.hero-card__dot.is-active { width: 20px; border-radius: 999px; background: #fff; }

.hero-card__play {
	position: absolute; top: 50%; left: 69%; transform: translate(-50%, -50%);
	width: 50px; height: 50px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--color-navy);
	display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; z-index: 2; transition: var(--transition);
}
.hero-card__play:hover { transform: translate(-50%, -50%) scale(1.08); }

/* =========================================================
   Son Haberler
   ========================================================= */
.latest-news__layout { display: block; }
.latest-news__layout .ad-slot { margin-top: 24px; }
/* auto-fit (auto-fill değil): gerçek haber sayısı 4'ten azken boş "hayalet"
 * sütunlar 0'a çökmek yerine 1fr olarak kalıp sağda büyük bir boşluk
 * bırakıyordu — auto-fit, içerik kadar sütun oluşturup mevcut kartların
 * satırın tamamına yayılmasını sağlıyor (bkz. kullanıcı ekran görüntüsü). */
.latest-news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.latest-news.tg-section { width: 100%; max-width: none; position: static; transform: none; margin-top: 40px; margin-bottom: 48px; }
.latest-news .section-heading { height: 48px; margin-bottom: 24px; align-items: center; }
.latest-news .section-heading__title { font-family: 'Montserrat', sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; color: #0D1B2A; gap: 12px; }
.latest-news .section-heading__icon {
	width: 32px; height: 32px; border-radius: 8px; background: #00B4D8; color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}
.latest-news .section-heading__link { font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 20px; font-weight: 500; color: #00B4D8; }
.latest-news .section-heading__link svg { transition: transform .25s ease; }
.latest-news .section-heading__link:hover { color: #14213D; text-decoration: none; }
.latest-news .section-heading__link:hover svg { transform: translateX(4px); }
.latest-news .ad-slot--rectangle { width: 300px; height: 250px; min-height: 250px; background: #F1F5F9; border: 1px solid #E2E8F0; border-radius: 12px; color: #334155; font-family: 'Montserrat', sans-serif; box-shadow: 0 2px 8px rgba(13, 27, 42, 0.04); }

.news-card {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
	transition: transform .25s ease, box-shadow .25s ease;
	width: 100%;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.news-card:hover .news-card__image,
.news-card:hover .news-card__placeholder { transform: scale(1.03); }
.news-card__media { position: relative; width: 100%; height: auto; aspect-ratio: 276 / 136; flex: 0 0 auto; overflow: hidden; border-radius: 12px 12px 0 0; }
.news-card__image,
.news-card__placeholder { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.news-card:nth-child(4n+1) .news-card__placeholder { background: url('../images/hero-main-v2.webp') 68% center / cover no-repeat; }
.news-card:nth-child(4n+2) .news-card__placeholder { background: url('../images/hero-video-v2.webp') 65% center / cover no-repeat; }
.news-card:nth-child(4n+3) .news-card__placeholder { background: url('../images/hero-person-v2.webp') 65% center / cover no-repeat; }
.news-card:nth-child(4n+4) .news-card__placeholder { background: url('../images/hero-main-v2.webp') 82% center / cover no-repeat; }
.news-card__badge {
	position: absolute; left: 12px; top: 12px; bottom: auto; z-index: 2; height: 20px; box-sizing: border-box; display: inline-flex; align-items: center;
	background: var(--color-accent-red); color: #fff; border-radius: 4px; padding: 0 8px; font-family: 'Montserrat', sans-serif; font-size: 11px;
	line-height: 1; font-weight: 700; text-transform: uppercase; transition: background-color .25s ease;
}
.news-card:hover .news-card__badge { background: var(--color-accent-red); opacity: .9; }
.news-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; background: #fff; gap: 8px; }
.news-card__title { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: #0D1B2A; line-height: 24px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.news-card__time { display: inline-flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-size: 12.5px; color: var(--color-muted); }

/* =========================================================
   Öne Çıkan Diziler
   ========================================================= */
/* Diğer ana sayfa bölümleriyle (Popüler Oyuncular/Karakterler) aynı görünüm:
 * koyu lacivert kutu YOK, düz sayfa arka planı üzerinde, standart başlık
 * stili (section-heading temel class'ından miras alınır). */
.featured-series .section-heading__title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: #0D1B2A; }
.featured-series .section-heading__link { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; color: #00B4D8; }
.featured-series .section-heading__link:hover { color: #14213D; text-decoration: none; }
.featured-series__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.tg-slider { position: relative; display: flex; align-items: center; gap: 8px; }
.tg-slider__viewport { overflow: hidden; flex: 1; min-width: 0; }
.tg-slider__track { display: flex; gap: 24px; }
.series-grid { scroll-snap-type: x mandatory; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 2px; }
.series-grid::-webkit-scrollbar { display: none; }

.series-card { flex: 0 0 calc((100% - 5 * 24px) / 6); scroll-snap-align: start; display: block; }
.series-card__media {
	position: relative; aspect-ratio: 188 / 218; border-radius: 8px; overflow: hidden;
	background: #14213D; border: 1px solid rgba(255, 255, 255, 0.35); transition: border-color .25s ease;
}
.series-card:hover .series-card__media { border-color: #00B4D8; }
.series-card__season { position: static; background: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; padding: 0; }
.series-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 27, 42, 0.05) 25%, rgba(13, 27, 42, 0.65) 65%, rgba(13, 27, 42, 0.95) 100%); }
.series-card__info { position: absolute; left: 12px; right: 12px; top: 12px; bottom: 12px; z-index: 2; display: flex; flex-direction: column; color: #fff; }
.series-card__season { margin-bottom: auto; }
.series-card__title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; line-height: 22px; }
.series-card__genre { font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 18px; color: #A8B2C3; }
.series-card:hover .tg-placeholder { transform: scale(1.03); }

.tg-slider__nav {
	width: 40px; height: 40px; border-radius: 999px; background: #fff; border: 1px solid #E2E8F0;
	box-shadow: 0 4px 12px rgba(13, 27, 42, 0.1); display: flex; align-items: center; justify-content: center; color: #00B4D8;
	cursor: pointer; flex-shrink: 0; transition: var(--transition);
}
.tg-slider__nav:hover { color: #14213D; }
.tg-slider__nav:disabled { opacity: 0.35; cursor: not-allowed; }

/* =========================================================
   Popüler Oyuncular
   ========================================================= */
.popular-actors .section-heading__title,
.popular-characters .section-heading__title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: #0D1B2A; }
.popular-actors .section-heading__link,
.popular-characters .section-heading__link { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; color: #00B4D8; }
.popular-actors .section-heading__link:hover,
.popular-characters .section-heading__link:hover { color: #14213D; text-decoration: none; }

.actor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px 16px; }
.actor-card {
	display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
	background: transparent; border: none; border-radius: 0;
	padding: 0; box-shadow: none; height: 100%;
	transition: transform .25s ease;
}
.actor-card:hover { transform: translateY(-4px); }
.actor-card__avatar { position: relative; width: 84px; height: 84px; }
.actor-card__avatar .tg-placeholder { border-radius: 999px; }
.actor-card__verified {
	position: absolute; bottom: 0; right: 0; width: 16px; height: 16px; border-radius: 999px; background: var(--color-primary);
	color: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.actor-card__verified svg { width: 9px; height: 9px; }
.actor-card__name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; line-height: 20px; color: #0D1B2A; }
.actor-card__character { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #687280; margin-top: -4px; }
.actor-card__button {
	margin-top: 0; height: auto; border: none; color: var(--color-primary); background: none;
	border-radius: 0; padding: 0; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; display: inline-flex;
	align-items: center; justify-content: center; gap: 4px; transition: var(--transition);
}
.actor-card__button:hover { background: none; color: var(--color-primary-dark); text-decoration: underline; }

/* =========================================================
   Popüler Karakterler
   ========================================================= */
.character-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.popular-characters__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.character-card {
	display: block; border-radius: 8px; overflow: hidden; background: #FFFFFF; border: 1px solid #E2E8F0;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); transition: transform .25s ease, box-shadow .25s ease;
}
.character-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.character-card__media { position: relative; height: 120px; overflow: hidden; }
.character-card:hover .tg-placeholder { transform: scale(1.05); }
.character-card__body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.character-card__name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #0D1B2A; }
.character-card__series { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; }

/* =========================================================
   Fragmanlar ve Videolar
   ========================================================= */
.videos-section .section-heading__title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: #0D1B2A; }
.videos-section .section-heading__link { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; color: #00B4D8; }
.videos-section .section-heading__link:hover { color: #14213D; text-decoration: none; }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: #0D1B2A; }
.video-card__media { position: relative; width: 100%; aspect-ratio: 568 / 155; }
.video-card__badge {
	position: absolute; top: 16px; left: 16px; z-index: 2; background: #00B4D8; color: #fff; font-family: 'Montserrat', sans-serif;
	font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; border-radius: 4px;
}
.video-card__duration {
	position: absolute; bottom: 16px; right: 16px; z-index: 2; color: #fff; font-family: 'Montserrat', sans-serif;
	font-size: 12px; font-weight: 600;
}
.video-card__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 27, 42, 0.98) 0%, rgba(13, 27, 42, 0.82) 45%, rgba(13, 27, 42, 0.25) 100%); }
.video-card__play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px;
	border-radius: 999px; background: #00B4D8; color: #fff; border: none; display: flex;
	align-items: center; justify-content: center; z-index: 2; transition: var(--transition);
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.08); }
.video-card__info { position: absolute; left: 18px; right: 100px; bottom: 16px; z-index: 2; color: #fff; }
.video-card__title { font-family: 'Montserrat', sans-serif; font-size: 18px; line-height: 26px; font-weight: 600; margin: 0 0 4px; color: #fff; }
.video-card__excerpt { font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 20px; color: #fff; margin: 0; }
.video-card:hover .tg-placeholder { transform: scale(1.03); }

/* =========================================================
   Video Modal
   ========================================================= */
.tg-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.tg-modal[hidden] { display: none; }
.tg-modal__overlay { position: absolute; inset: 0; background: rgba(11, 19, 43, 0.8); }
.tg-modal__dialog { position: relative; z-index: 2; width: min(880px, 100%); }
.tg-modal__media { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius-large); overflow: hidden; }
.tg-modal__media iframe, .tg-modal__media video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tg-modal__close {
	position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 999px;
	background: rgba(255, 255, 255, 0.15); color: #fff; border: none; display: flex; align-items: center;
	justify-content: center; cursor: pointer; z-index: 3;
}
.tg-modal__close:hover { background: rgba(255, 255, 255, 0.3); }

/* =========================================================
   Breadcrumb
   ========================================================= */
.tg-breadcrumbs { margin: 18px 0 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; }
.tg-breadcrumbs__list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.tg-breadcrumbs__item { display: inline-flex; align-items: center; gap: 6px; }
.tg-breadcrumbs__item a { color: var(--color-muted); }
.tg-breadcrumbs__item a:hover { color: var(--color-primary); }
.tg-breadcrumbs__item [aria-current] { color: var(--color-heading); font-weight: 600; }
.tg-breadcrumbs__sep { color: var(--color-border); }

/* =========================================================
   Detay sayfası: hero banner (dizi)
   ========================================================= */
.single-hero { position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; margin-bottom: 8px; }
.single-hero__media { position: absolute; inset: 0; }
.single-hero__image { width: 100%; height: 100%; object-fit: cover; }
.single-hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(11, 19, 43, 0.92) 10%, rgba(11, 19, 43, 0.55) 45%, rgba(11, 19, 43, 0.15) 75%, transparent 100%);
}
.single-hero__content { position: relative; z-index: 2; padding: 40px 16px 32px; color: #fff; width: 100%; }
.single-hero__title { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.single-hero__excerpt { max-width: 640px; color: rgba(255, 255, 255, 0.85); margin: 0 0 18px; font-size: 14.5px; }

/* =========================================================
   Detay sayfası: bilgi tablosu (dizi özeti)
   ========================================================= */
.single-info__grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.single-info__summary { color: var(--color-text); line-height: 1.7; }
.single-info__summary p { margin: 0 0 14px; }
.single-info__table {
	background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-medium);
	padding: 6px 18px; margin: 0;
}
.single-info__row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 13.5px; }
.single-info__row:last-child { border-bottom: none; }
.single-info__row dt { color: var(--color-muted); margin: 0; }
.single-info__row dd { margin: 0; color: var(--color-heading); font-weight: 600; text-align: right; }

/* =========================================================
   Detay sayfası: oyuncu/karakter başlığı
   ========================================================= */
.single-actor-header { display: flex; gap: 28px; align-items: flex-start; margin: 28px 0; }
.single-actor-header__avatar { position: relative; width: 160px; height: 160px; border-radius: 999px; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-card); }
.single-actor-header__avatar img { width: 100%; height: 100%; object-fit: cover; }
.single-actor-header__verified {
	position: absolute; bottom: 6px; right: 6px; width: 30px; height: 30px; border-radius: 999px;
	background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; border: 3px solid #fff;
}
.single-actor-header__name { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.single-actor-header__profession { color: var(--color-primary); font-weight: 600; font-size: 14px; margin: 0 0 12px; }
.single-actor-header__facts { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: var(--color-muted); margin-bottom: 14px; }
.single-actor-header__facts a { color: var(--color-primary); font-weight: 600; }
.single-actor-header__social { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.single-actor-header__social a { display: inline-flex; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--color-border); font-size: 12.5px; font-weight: 600; color: var(--color-heading); }
.single-actor-header__social a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.single-actor-header__bio { margin-top: 6px; }

/* =========================================================
   Detay sayfası: video oynatıcı
   ========================================================= */
.single-video-player__stage { display: block; width: 100%; max-width: var(--container-width); margin: 24px auto 0; border-radius: var(--radius-large); overflow: hidden; cursor: pointer; }
.single-video-player__stage .video-card__media { aspect-ratio: 16 / 8; }
.single-video-player__body { padding-top: 24px; }
.single-video-player__title { color: var(--color-heading); font-size: 26px; margin-bottom: 14px; }

/* =========================================================
   Arşiv sayfaları
   ========================================================= */
.archive-header { margin: 8px 0 20px; }
.archive-header__title { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 6px; color: #0D1B2A; }
.archive-header__subtitle { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: #687280; margin: 0; }
.archive-header__count { color: var(--color-muted); font-size: 14px; margin: 0; }
.archive-header__description { color: var(--color-muted); font-size: 14px; margin-top: 8px; }

.archive-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.archive-filters select {
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-heading);
	font-size: 13.5px;
	cursor: pointer;
}
.archive-filters select:focus { border-color: var(--color-primary); }

/* =========================================================
   Diziler katalog sayfası: pill filtre çubuğu, kanal bölümleri, kartlar
   ========================================================= */
.channel-filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.channel-filter-bar__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.channel-pill {
	display: inline-flex; align-items: center; height: 40px; padding: 0 20px; border-radius: 20px;
	background: #fff; border: 1px solid #E2E8F0; color: #0D1B2A; font-family: 'Montserrat', sans-serif;
	font-size: 14px; font-weight: 500; white-space: nowrap; transition: var(--transition);
}
.channel-pill:hover { background: #E6F7FB; }
.channel-pill.is-active { background: #00B4D8; border-color: #00B4D8; color: #fff; }
.channel-filter-bar__sort select {
	height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid #E2E8F0; background: #fff;
	color: #0D1B2A; font-family: 'Montserrat', sans-serif; font-size: 14px; cursor: pointer;
}

.channel-section { margin-bottom: 40px; }
.channel-section__heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.channel-section__title {
	display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif;
	font-size: 20px; font-weight: 600; color: #0D1B2A; margin: 0;
}
.channel-section__icon {
	width: 28px; height: 28px; border-radius: 8px; background: #00B4D8; color: #fff;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.channel-section__link {
	display: inline-flex; align-items: center; gap: 4px; font-family: 'Montserrat', sans-serif;
	font-size: 14px; font-weight: 500; color: #00B4D8; white-space: nowrap;
}
.channel-section__link:hover { color: #14213D; }

.catalog-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.channel-section .series-grid.tg-slider__track { gap: 24px; }
.channel-section .series-card { flex: 0 0 calc((100% - 5 * 24px) / 6); }
.channel-section .catalog-card { flex: 0 0 calc((100% - 5 * 24px) / 6); min-width: 0; }

.catalog-card {
	display: block; background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); transition: transform .25s ease, box-shadow .25s ease;
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.catalog-card:hover .tg-placeholder { transform: scale(1.03); }
.catalog-card__media { position: relative; aspect-ratio: 188 / 210; overflow: hidden; }
.catalog-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.55) 100%); }
.catalog-card__body { padding: 16px; }
.catalog-card__title { display: block; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: #0D1B2A; margin-bottom: 4px; }
.catalog-card__meta-line { display: block; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; }

.catalog-card__badge {
	position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 3px;
	padding: 4px 9px; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
	line-height: 1; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.catalog-card__badge--rating { background: rgba(13, 27, 42, 0.85); color: #FBBF24; }
.catalog-card__badge--yeni { background: #2563EB; color: #fff; }
.catalog-card__badge--devam { background: #16A34A; color: #fff; }

.catalog-load-more { display: flex; justify-content: center; margin-top: 8px; }
.catalog-load-more a {
	display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 24px; border-radius: 8px;
	background: #fff; border: 1px solid #E2E8F0; color: #0D1B2A; font-family: 'Montserrat', sans-serif;
	font-size: 14px; font-weight: 500; transition: var(--transition);
}
.catalog-load-more a:hover { color: #00B4D8; border-color: #00B4D8; }
.catalog-load-more a::after { content: ''; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }

/* Diziler: "Kanallar" / "Dijital Platformlar" filtre kutuları */
.dizi-filter-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.filter-box { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 18px 20px; }
.filter-box__title {
	display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 14px;
	font-weight: 600; color: #0D1B2A; margin-bottom: 14px;
}
.filter-box__title-icon { display: flex; color: #00B4D8; flex-shrink: 0; }
.filter-box__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-box__overflow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.filter-box__overflow[hidden] { display: none; }
.channel-pill { gap: 6px; }
.channel-pill__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 5px;
	background: rgba(0, 180, 216, 0.12); color: #00889A; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.channel-pill.is-active .channel-pill__icon { background: rgba(255, 255, 255, 0.25); color: #fff; }
.channel-pill--toggle { background: none; border-style: dashed; cursor: pointer; }
.channel-pill--toggle:hover { background: #E6F7FB; }

/* Diziler: sıralama/durum/yıl/arama filtre satırı */
.dizi-filter-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 32px; }
.dizi-filter-controls select {
	padding: 9px 14px; border-radius: 8px; border: 1px solid #E2E8F0; background: #fff; color: #0D1B2A;
	font-family: 'Montserrat', sans-serif; font-size: 13.5px; cursor: pointer;
}
.dizi-filter-controls select:focus { border-color: var(--color-primary); }
.dizi-filter-controls__search { width: 260px; }
.dizi-filter-controls__clear {
	margin-left: auto; font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 500; color: #687280;
	white-space: nowrap;
}
.dizi-filter-controls__clear:hover { color: #00B4D8; }

.channel-section__icon--yeni { background: #2563EB; }
.channel-section__icon--devam { background: #16A34A; }

/* =========================================================
   Oyuncular katalog sayfası
   ========================================================= */
.channel-filter-bar__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.actor-search-box {
	display: flex; align-items: center; width: 320px; height: 40px; padding: 0 6px 0 16px; gap: 8px;
	background: #fff; border: 1px solid #E2E8F0; border-radius: 8px;
}
.actor-search-box input[type="search"] {
	flex: 1; min-width: 0; border: none; outline: none; background: transparent;
	font-family: 'Montserrat', sans-serif; font-size: 14px; color: #0D1B2A;
}
.actor-search-box input[type="search"]::placeholder { color: #687280; }
.actor-search-box button {
	width: 28px; height: 28px; border-radius: 6px; border: none; background: none; color: #687280;
	display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.actor-search-box button:hover { color: #00B4D8; }

/* Kategori ikon renkleri (cinsiyet/uyruk) */
.channel-section__icon--erkek, .category-summary__icon.channel-section__icon--erkek { background: #2563EB; }
.channel-section__icon--kadin, .category-summary__icon.channel-section__icon--kadin { background: #EC4899; }
.channel-section__icon--cocuk, .category-summary__icon.channel-section__icon--cocuk { background: #22C55E; }
.channel-section__icon--turk, .category-summary__icon.channel-section__icon--turk { background: #EF4444; }
.channel-section__icon--yabanci, .category-summary__icon.channel-section__icon--yabanci { background: #3B82F6; }
.channel-section__icon--birthday { background: #F59E0B; }

.catalog-grid--actors { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.channel-section .actor-grid--catalog { display: flex; gap: 24px; }
.channel-section .actor-catalog-card { flex: 0 0 calc((100% - 5 * 24px) / 6); }

.actor-catalog-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); transition: transform .25s ease, box-shadow .25s ease;
}
.actor-catalog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.actor-catalog-card:hover .tg-placeholder { transform: scale(1.03); }
.actor-catalog-card__media { position: relative; aspect-ratio: 188 / 180; overflow: hidden; flex-shrink: 0; }
.actor-catalog-card__verified {
	position: absolute; bottom: 8px; right: 8px; z-index: 2; width: 16px; height: 16px; border-radius: 999px;
	background: #00B4D8; color: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.actor-catalog-card__verified svg { width: 9px; height: 9px; }
/* flex:1 + button'da margin-top:auto — uzun isim 2 satıra düştüğünde bile
   buton her kartta aynı alt hizada kalır (isim uzunluğuna göre kaymaz). */
.actor-catalog-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.actor-catalog-card__name { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: #0D1B2A; margin-bottom: 2px; }
.actor-catalog-card__profession { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; margin-bottom: 12px; }
.actor-catalog-card__button {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 36px; padding: 0 14px;
	border: 1px solid #00B4D8; border-radius: 8px; color: #00B4D8; background: #fff;
	font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; transition: var(--transition);
	margin-top: auto;
}
.actor-catalog-card:hover .actor-catalog-card__button { background: #00B4D8; color: #fff; }

.category-summary { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin: 8px 0 40px; }
.category-summary__card {
	display: flex; align-items: center; gap: 12px; height: 72px; padding: 0 16px;
	background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; transition: var(--transition);
}
.category-summary__card:hover { box-shadow: 0 4px 16px rgba(13, 27, 42, 0.08); }
.category-summary__icon {
	width: 36px; height: 36px; border-radius: 8px; color: #fff; display: flex; align-items: center;
	justify-content: center; flex-shrink: 0;
}
.category-summary__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.category-summary__text strong { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #0D1B2A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.category-summary__text span { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; }

/* =========================================================
   Karakterler katalog sayfası
   ========================================================= */
.archive-header__title--lg { font-size: 40px; }

.channel-filter-bar--lg .channel-pill--lg { height: 48px; }
.catalog-load-more--outline a { border-color: #00B4D8; color: #00B4D8; }
.catalog-load-more--outline a:hover { background: #00B4D8; color: #fff; }

.catalog-grid--characters { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.channel-section .character-grid--catalog { display: flex; gap: 16px; }
.channel-section .character-catalog-card { flex: 0 0 calc((100% - 5 * 16px) / 6); }

.character-catalog-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); transition: transform .25s ease, box-shadow .25s ease;
}
.character-catalog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.character-catalog-card:hover .tg-placeholder { transform: scale(1.03); }
.character-catalog-card__media { position: relative; aspect-ratio: 188 / 120; overflow: hidden; }
.character-catalog-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.character-catalog-card__name { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #0D1B2A; margin-bottom: 4px; }
.character-catalog-card__series { font-family: 'Montserrat', sans-serif; font-size: 14px; color: #0D1B2A; margin-bottom: 4px; }
.character-catalog-card__actor {
	display: flex; align-items: center; gap: 4px; font-family: 'Montserrat', sans-serif; font-size: 13px;
	color: #687280; margin-bottom: 12px;
}
.character-catalog-card__button {
	margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 36px; padding: 0 14px;
	border: 1px solid #00B4D8; border-radius: 8px; color: #00B4D8; background: #fff;
	font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; transition: var(--transition);
}
.character-catalog-card:hover .character-catalog-card__button { background: #00B4D8; color: #fff; }

.channel-section--compact { margin-bottom: 28px; }
.channel-section__title--sm { font-size: 16px; }

.character-mini-row { display: flex; flex-wrap: wrap; gap: 12px; }
.character-mini-card {
	display: flex; align-items: center; gap: 10px; width: 140px; height: 72px; padding: 8px;
	background: #fff; border: 1px solid #E2E8F0; border-radius: 8px; transition: var(--transition);
}
.character-mini-card:hover { background: #F8FAFC; border-color: #00B4D8; }
.character-mini-card__media { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; position: relative; }
.character-mini-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.character-mini-card__name { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: #0D1B2A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.character-mini-card__actor { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #687280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.character-avatar-wall { display: flex; flex-wrap: wrap; gap: 12px; }
.character-avatar-wall__item { width: 64px; height: 64px; border-radius: 999px; overflow: hidden; display: block; flex-shrink: 0; position: relative; transition: transform .2s ease; }
.character-avatar-wall__item:hover { transform: scale(1.08); }

/* Ana sayfadaki yatay slider grid'lerini arşivlerde normal (sarmalayan) grid'e çevir */
.series-grid--archive {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	scroll-snap-type: none;
	overflow-x: visible;
	padding-bottom: 0;
}
.series-grid--archive .series-card { flex: none; }
.character-grid--archive { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.latest-news__grid--archive { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.video-grid--archive { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.archive-empty {
	padding: 60px 20px;
	text-align: center;
	color: var(--color-muted);
	background: var(--color-card);
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-medium);
}

/* templates/series/archive-series-trailers.php — bölüm bazlı fragman grup başlıkları */
.archive-group-heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0D1B2A;
	margin: 32px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border);
}
.archive-group-heading:first-of-type { margin-top: 0; }

.search-empty { padding: 20px 0; }
.search-empty__heading { margin: 32px 0 16px; font-size: 19px; font-weight: 700; color: var(--color-heading); }
.site-search--standalone { max-width: 420px; margin: 16px 0; background: #f1f5f9; }

/* Sayfalama (the_posts_pagination() varsayılan sınıfları) */
.pagination { margin: 32px 0; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	color: var(--color-heading);
	font-size: 13.5px;
	font-weight: 600;
	background: #fff;
}
.pagination .page-numbers.current { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.pagination .page-numbers.dots { border: none; background: none; }
.pagination .page-numbers:hover:not(.current):not(.dots) { border-color: var(--color-primary); color: var(--color-primary); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: var(--brand-navy);
	color: #A8B2C3;
	font-family: 'Montserrat', sans-serif;
	padding: 24px 0;
	margin-top: 32px;
	border-radius: 12px 12px 0 0;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(5, 1fr);
	gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand__logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 12px; max-width: 220px; }
.footer-brand__mark { width: 36px; height: 36px; border-radius: 8px; background: var(--brand-red); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand__wordmark { font-weight: 700; font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; }
.footer-brand__wordmark-part--white { color: #fff; }
.footer-brand__wordmark-part--teal { color: var(--brand-turquoise); }
.footer-brand__wordmark-part--red { color: var(--brand-red); }
.footer-brand__desc { font-size: 13px; line-height: 20px; color: #A8B2C3; margin: 0 0 16px; max-width: 220px; }
.footer-brand__social { display: flex; gap: 12px; list-style: none; margin: 0; padding: 0; }
.footer-brand__social a {
	width: 36px; height: 36px; border-radius: 999px; background: transparent; border: 1px solid rgba(255, 255, 255, 0.25); color: #fff;
	display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-brand__social a:hover { background: var(--brand-turquoise); border-color: var(--brand-turquoise); }

.footer-heading { color: #fff; font-size: 16px; line-height: 24px; font-weight: 600; margin: 0 0 14px; }
.footer-col__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.footer-col__list a { font-size: 13px; line-height: 24px; color: #A8B2C3; }
.footer-col__list a:hover { color: var(--brand-turquoise); }

.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 20px; }
.site-footer__copyright { font-size: 12px; color: #A8B2C3; margin: 0; }
.site-footer__legal { list-style: none; display: flex; align-items: center; gap: 16px; margin: 0; padding: 0; font-size: 12px; }
.site-footer__legal li { display: flex; align-items: center; gap: 16px; }
.site-footer__legal li + li::before { content: ''; width: 1px; height: 12px; background: rgba(255, 255, 255, 0.25); }
.site-footer__legal a { color: #A8B2C3; }
.site-footer__legal a:hover { color: #00B4D8; }

.back-to-top-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	color: #A8B2C3;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}
.back-to-top-btn:hover { color: #fff; }
.back-to-top-btn__icon {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--brand-turquoise);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: var(--transition);
}

/* =========================================================
   Oyuncu profil (detay) sayfası
   ========================================================= */
.actor-detail-layout { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; margin: 24px 0 48px; }
/* grid/flex öğelerinin varsayılan min-width:auto'su, içinde küçülmeyen bir
   slider (ör. çok sayıda sabit-genişlikli series-role-card) olduğunda bu
   sütunu içeriğin tam genişliğine göre şişirir — min-width:0 bunu engeller. */
.actor-content-area { min-width: 0; }
.actor-content-split { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; margin-bottom: 32px; }
.actor-content-main, .actor-content-rail { min-width: 0; }

.actor-profile-card {
	background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); position: sticky; top: 96px;
}
.actor-profile-card__portrait { position: relative; aspect-ratio: 320 / 420; overflow: hidden; background: #E5E7EB; }
.actor-profile-card__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.actor-profile-card__verified {
	position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border-radius: 999px;
	background: #00B4D8; color: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.actor-profile-card__panel { background: #0D1B2A; padding: 20px; }
.actor-profile-card__name { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 2px; line-height: 1.2; }
.actor-profile-card__profession { font-family: 'Montserrat', sans-serif; font-size: 14px; color: #D6E4F0; margin: 0 0 16px; }
.actor-profile-card__actor-link { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 600; color: #D6E4F0; margin: 0 0 16px; }
.actor-profile-card__actor-link a { color: #00B4D8; text-decoration: none; }
.actor-profile-card__actor-link a:hover,
.actor-profile-card__actor-link a:focus-visible { text-decoration: underline; }
.actor-quick-facts { list-style: none; margin: 0; padding: 8px 20px 20px; }
.actor-quick-facts__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #F1F5F9; }
.actor-quick-facts__row:last-child { border-bottom: none; }
.actor-quick-facts__label { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #687280; white-space: nowrap; }
.actor-quick-facts__value { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; color: #0D1B2A; text-align: right; }
a.actor-quick-facts__value:hover { color: #00B4D8; }

.actor-tabs { display: flex; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid #E2E8F0; margin-bottom: 24px; }
.actor-tabs__item {
	display: inline-flex; align-items: center; height: 44px; font-family: 'Montserrat', sans-serif; font-size: 14px;
	font-weight: 500; color: #687280; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.actor-tabs__item.is-active, .actor-tabs__item:hover { color: #00B4D8; border-bottom-color: #00B4D8; }
.actor-tabs__external-icon { margin-left: 4px; flex-shrink: 0; }

.actor-biography__content { max-width: 720px; font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 30px; color: #374151; }
.actor-biography__content p { margin: 0 0 20px; }
.actor-biography__content p:last-child { margin-bottom: 0; }

.actor-sidebar-box { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 16px; margin-bottom: 24px; }
.actor-sidebar-box__heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.actor-sidebar-box__title { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: #0D1B2A; margin: 0; }
.actor-sidebar-box__link { display: inline-flex; align-items: center; gap: 4px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 500; color: #00B4D8; white-space: nowrap; }
.actor-sidebar-box__link:hover { color: #14213D; }

.actor-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.actor-photo-grid__item { position: relative; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; }
.actor-photo-grid__item .tg-placeholder { transition: transform .25s ease; }
.actor-photo-grid__item:hover .tg-placeholder { transform: scale(1.05); }

.actor-mini-series-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.actor-mini-series-list__item { display: flex; align-items: center; gap: 10px; }

/* =========================================================
   Karakter detay (single-karakter.php) — actor-* bileşenleri paylaşılıyor,
   yalnızca bu sayfaya özel ölçü/renk sapmaları burada override ediliyor.
   ========================================================= */
body.single-karakter { background: #F7F9FC; }

.character-detail-layout { grid-template-columns: 300px 1fr; }
.character-detail-layout .actor-content-split { grid-template-columns: 1fr 320px; }
.character-detail-layout .actor-profile-card,
.character-detail-layout .actor-sidebar-box {
	border-radius: 16px; border-color: #E8EDF5; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.character-detail-layout .actor-profile-card__portrait { aspect-ratio: 300 / 400; }
.character-detail-layout .actor-quick-facts__row { height: 48px; padding: 0; align-items: center; }
.character-detail-layout .actor-tabs__item.is-active,
.character-detail-layout .actor-tabs__item:hover { color: #1493FF; border-bottom-color: #1493FF; }
.character-biography { max-width: 680px; font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 30px; color: #374151; }
.character-biography p { margin: 0 0 20px; }
.character-biography p:last-child { margin-bottom: 0; }

.character-detail-layout .section-heading__title,
.character-episodes-section .section-heading__title,
.character-relations-section .section-heading__title,
.character-video-news-row .section-heading__title {
	font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: #0D1B2A; margin: 0 0 20px;
}

.character-photo-box .actor-photo-grid,
.character-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.character-photo-grid__item { position: relative; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; }
.character-photo-grid__item .tg-placeholder { transition: transform .25s ease; }
.character-photo-grid__item:hover .tg-placeholder { transform: scale(1.03); }

.character-episode-strip { display: flex; gap: 12px; }
.character-episode-card {
	position: relative; flex: 0 0 170px; width: 170px; height: 90px; border-radius: 8px; overflow: hidden; display: block;
	transition: transform .2s ease;
}
.character-episode-card:hover { transform: translateY(-2px); }
.character-episode-card .tg-placeholder { position: absolute; inset: 0; }
.character-episode-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%); }
.character-episode-card__info { position: absolute; left: 10px; right: 10px; bottom: 8px; z-index: 2; display: flex; flex-direction: column; gap: 1px; }
.character-episode-card__title { font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; color: #fff; }
.character-episode-card__date { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255, 255, 255, 0.75); }

.character-relations-row { display: flex; flex-wrap: wrap; gap: 20px; }
.character-relations-row__item { display: flex; flex-direction: column; align-items: center; text-align: center; width: 90px; }
.character-relations-row__avatar { width: 70px; height: 70px; border-radius: 999px; overflow: hidden; position: relative; margin-bottom: 8px; }
.character-relations-row__name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #0D1B2A; line-height: 1.3; }
.character-relations-row__label { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #687280; }

.character-video-news-row { display: grid; grid-template-columns: 1fr 320px; gap: 24px; margin-bottom: 32px; }
.character-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.character-video-grid .video-card__media { aspect-ratio: 240 / 140; }
.character-news-grid { display: flex; flex-direction: column; gap: 12px; }
.character-news-grid .news-card { flex-direction: row; }
.character-news-grid .news-card__media { width: 110px; aspect-ratio: 110 / 90; border-radius: 12px 0 0 12px; flex-shrink: 0; }
.character-news-grid .news-card__body { padding: 12px; }
.character-news-grid .news-card__title { font-size: 13.5px; line-height: 19px; }
.actor-mini-series-list__media { position: relative; width: 40px; height: 40px; border-radius: 8px; overflow: hidden; flex-shrink: 0; display: block; }
.actor-mini-series-list__info { display: flex; flex-direction: column; min-width: 0; flex: 1; gap: 1px; }
.actor-mini-series-list__title { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #0D1B2A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.actor-mini-series-list__character { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #687280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.actor-mini-series-list__years { font-family: 'Montserrat', sans-serif; font-size: 11.5px; color: #687280; white-space: nowrap; flex-shrink: 0; }

.series-role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.series-role-card { display: block; background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06); transition: transform .25s ease, box-shadow .25s ease; }
.series-role-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13, 27, 42, 0.14); }
.series-role-card:hover .tg-placeholder { transform: scale(1.03); }
.series-role-card__media { position: relative; aspect-ratio: 188 / 120; overflow: hidden; }
.series-role-card__body { padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.series-role-card__title { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: #0D1B2A; }
.series-role-card__character { font-family: 'Montserrat', sans-serif; font-size: 13px; color: #00B4D8; }
.series-role-card__years { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #687280; }
.back-to-top-btn:hover .back-to-top-btn__icon { background: #14213D; }

/* =========================================================
   Çerez rızası banner'ı
   ========================================================= */
.tg-cookie-consent {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
	background: #0D1B2A; border-top: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
	transition: transform .3s ease, opacity .3s ease;
}
.tg-cookie-consent.is-hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.tg-cookie-consent__inner {
	max-width: var(--container-width); margin: 0 auto; padding: 16px;
	display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.tg-cookie-consent__text { flex: 1; min-width: 240px; margin: 0; font-family: 'Montserrat', sans-serif; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.tg-cookie-consent__text a { color: #00B4D8; font-weight: 600; }
.tg-cookie-consent__text a:hover { text-decoration: underline; }
.tg-cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.tg-cookie-consent__btn {
	height: 40px; padding: 0 18px; border-radius: 8px; font-family: 'Montserrat', sans-serif;
	font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: var(--transition);
}
.tg-cookie-consent__btn--reject { background: transparent; border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.tg-cookie-consent__btn--reject:hover { background: rgba(255,255,255,0.1); }
.tg-cookie-consent__btn--accept { background: #00B4D8; border: 1px solid #00B4D8; color: #fff; }
.tg-cookie-consent__btn--accept:hover { background: #00889A; }
@media (max-width: 600px) {
	.tg-cookie-consent__inner { flex-direction: column; align-items: stretch; }
	.tg-cookie-consent__actions { justify-content: stretch; }
	.tg-cookie-consent__btn { flex: 1; }
}

/* Statik Sayfa (page.php) */
.tg-page { max-width: 860px; margin: 0 auto; }
.tg-page__header { margin-bottom: 24px; }
.tg-page__title { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; color: var(--color-heading); margin: 0; }
.tg-page__thumbnail { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.tg-page__thumbnail img { width: 100%; height: auto; display: block; }
.tg-page__content { font-size: 16px; line-height: 1.75; color: var(--color-text); }
.tg-page__content h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; color: var(--color-heading); margin: 32px 0 16px; }
.tg-page__content h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; color: var(--color-heading); margin: 28px 0 14px; }
.tg-page__content p { margin: 0 0 18px; }
.tg-page__content ul, .tg-page__content ol { margin: 0 0 18px; padding-left: 22px; }
.tg-page__content li { margin-bottom: 8px; }
.tg-page__content a { color: var(--color-primary); text-decoration: underline; }
.tg-page__content a:hover { color: var(--color-primary-dark); }
.tg-page__content img { max-width: 100%; height: auto; border-radius: 8px; }
.tg-page__content table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.tg-page__content table th, .tg-page__content table td { padding: 10px 14px; border: 1px solid var(--color-border); text-align: left; }
.tg-page__content blockquote { margin: 0 0 18px; padding: 12px 20px; border-left: 3px solid var(--color-primary); background: var(--color-background); color: var(--color-muted); }
