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

:root {
  --pink: #ff2d9b;
  --pink-light: #ff6fc0;
  --pink-dark: #c4006e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --card-bg: #ffffff;
  --border: #e8e8e8;
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-bg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--font-body);
  background: #f7f5f8;
  color: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,45,155,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; display: block; border-radius: 6px; }
.footer-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--pink); background: rgba(255,45,155,0.07); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-btn { display: flex; align-items: center; gap: 4px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  transition-delay: 0s;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-delay: 0s;
}

.dropdown:not(:hover) .dropdown-menu {
  transition-delay: 0.15s;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #333;
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown-item:hover { background: rgba(255,45,155,0.07); color: var(--pink); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.dropdown-label {
  display: block;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SEARCH */
.nav-search { position: relative; }
.search-input {
  width: 200px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: #f9f9f9;
  outline: none;
  transition: all 0.2s;
}
.search-input:focus { border-color: var(--pink); background: white; box-shadow: 0 0 0 3px rgba(255,45,155,0.1); }

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  max-height: 300px;
  overflow-y: auto;
  z-index: 200;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.85rem;
}
.search-result-item:hover { background: rgba(255,45,155,0.05); }
.search-result-item img { width: 36px; height: 52px; object-fit: cover; border-radius: 4px; }
.search-result-title { font-weight: 500; }
.search-result-couple { font-size: 0.75rem; color: var(--gray); }
.hidden { display: none !important; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--pink); }
.mobile-nav-btns { display: contents; }
.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: white;
  z-index: 999;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: #333; }
.mobile-menu a:hover { background: rgba(255,45,155,0.07); color: var(--pink); }

/* ===== BANNER ===== */
.banner { position: relative; height: 220px; overflow: hidden; background: var(--black); }

.banner-track {
  display: flex;
  height: 100%;
  animation: scroll-banner 40s linear infinite;
  will-change: transform;
}
@keyframes scroll-banner {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.banner-track:hover { animation-play-state: paused; }

.banner-poster { flex-shrink: 0; width: 130px; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
.banner-poster:hover { opacity: 1; }

.banner-fade-left, .banner-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.banner-fade-left  { left: 0;  background: linear-gradient(to right, var(--black), transparent); }
.banner-fade-right { right: 0; background: linear-gradient(to left,  var(--black), transparent); }

/* ===== LAYOUT ===== */
.main-content { min-height: 60vh; }
.section { padding: 60px 40px; max-width: 1300px; margin: 0 auto; }
.section-dark { background: var(--dark); width: 100%; }
.section-dark .section { max-width: 1300px; margin: 0 auto; }
.section-dark .section-title { color: white; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 48px; height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.2s;
}
.back-link:hover { color: var(--pink); }

/* ===== AIRING CARDS ===== */
.airing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.airing-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.airing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.airing-card-top { display: flex; }
.airing-poster-link { flex-shrink: 0; display: block; width: 120px; }
.airing-poster { width: 120px; height: 160px; object-fit: cover; }
.airing-card-info { padding: 16px; flex: 1; }
.airing-title { font-size: 1.1rem; font-weight: 500; color: var(--pink); margin-bottom: 6px; line-height: 1.2; }
.airing-couples { font-size: 0.8rem; color: var(--gray); margin-bottom: 10px; line-height: 1.5; }
.airing-meta { display: flex; flex-direction: column; gap: 4px; }
.airing-meta-row { font-size: 0.82rem; color: #555; }
.airing-meta-row strong { color: var(--black); }

.airing-streaming { border-top: 1px solid var(--border); padding: 14px 16px; }
.streaming-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.streaming-label { font-size: 0.75rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.streaming-list { display: flex; flex-direction: column; gap: 6px; }

.streaming-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: #333;
  transition: all 0.15s;
  cursor: pointer;
}
.streaming-item:hover { background: rgba(255,45,155,0.05); border-color: var(--pink-light); }
.streaming-item-left { display: flex; align-items: center; gap: 8px; }
.streaming-logo { width: 24px; height: 24px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.streaming-name { font-size: 0.8rem; color: #333; font-weight: 500; }
.streaming-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; letter-spacing: 0.04em; }
.badge-free { background: rgba(255,45,155,0.12); color: var(--pink-dark); }
.badge-sub  { background: rgba(100,100,100,0.1); color: #666; }
.streaming-flag { font-size: 1.1rem; }
.streaming-item-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ===== REPORT BROKEN LINK ===== */
.report-link-btn {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,45,155,0.12); color: var(--pink);
  border: 1.5px solid rgba(255,45,155,0.3); cursor: pointer;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.report-link-btn:hover { background: rgba(255,45,155,0.22); transform: scale(1.1); }

.report-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.report-popup.hidden { display: none; }

.report-popup-box {
  background: white;
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  max-width: 360px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: center;
}
.report-popup-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.report-popup-sub { font-size: 0.82rem; color: var(--gray); margin-bottom: 20px; }
.report-popup-actions { display: flex; gap: 10px; justify-content: center; }
.report-popup-confirm {
  padding: 9px 22px; background: var(--pink); color: white;
  border: none; border-radius: 20px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.report-popup-confirm:hover { background: var(--pink-dark); }
.report-popup-confirm:disabled { opacity: 0.6; cursor: not-allowed; }
.report-popup-cancel {
  padding: 9px 22px; background: none; color: var(--gray);
  border: 1.5px solid var(--border); border-radius: 20px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.report-popup-cancel:hover { border-color: #999; color: #444; }
.streaming-lang-icon { width: 18px; height: 18px; object-fit: contain; border-radius: 3px; display: block; }

/* ===== COMING SOON ===== */
.coming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }

.coming-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.coming-card:hover { transform: scale(1.04); }

.coming-poster { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.coming-no-poster {
  width: 100%; aspect-ratio: 2/3;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gray); text-align: center; padding: 8px;
}

.coming-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.25s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.coming-card:hover .coming-overlay { opacity: 1; }

.coming-title  { font-size: 0.85rem; color: white; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
.coming-couple { font-size: 0.72rem; color: var(--pink-light); }
.coming-release { font-size: 0.7rem; color: var(--gray-light); margin-top: 4px; }
.coming-teaser {
  display: inline-block; margin-top: 6px;
  font-size: 0.7rem; padding: 3px 8px;
  background: var(--pink); color: white; border-radius: 20px; width: fit-content;
}
.coming-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 24px 10px 10px;
  font-size: 0.78rem; font-weight: 600; color: white;
}

/* ===== MOST POPULAR ===== */
.popular-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }

.popular-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; box-shadow: var(--shadow);
}
.popular-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.popular-rank {
  position: absolute; top: 10px; left: 10px;
  width: 32px; height: 32px;
  background: var(--pink); color: white;
  font-weight: 700; font-size: 0.9rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 2px 8px rgba(255,45,155,0.4);
}

.popular-poster { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.popular-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 32px 12px 12px;
}
.popular-title  { font-size: 0.85rem; color: white; font-weight: 700; margin-bottom: 2px; }
.popular-couple { color: var(--pink-light); font-size: 0.72rem; }
.popular-meta   { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* ===== FULL LIST ===== */
.page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 8px; }
.page-subtitle { color: var(--gray); font-size: 1rem; margin-bottom: 32px; }
.fulllist-header { margin-bottom: 32px; }

.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.filter-search-wrap { flex: 1; min-width: 200px; }
.filter-search {
  width: 100%; padding: 10px 18px;
  border: 1.5px solid var(--border); border-radius: 25px;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: all 0.2s; background: #f9f9f9;
}
.filter-search:focus { border-color: var(--pink); background: white; box-shadow: 0 0 0 3px rgba(255,45,155,0.1); }
.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 20px;
  border: 1.5px solid var(--border); background: white;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; color: #555;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--pink); border-color: var(--pink); color: white; }
.sort-select {
  padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 20px;
  font-family: var(--font-body); font-size: 0.82rem;
  outline: none; cursor: pointer; background: white; transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--pink); }
.series-count { font-size: 0.82rem; color: var(--gray); margin-bottom: 20px; }

.full-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }

.list-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow); background: #eee;
}
.list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.list-card-poster { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.list-card-no-poster {
  width: 100%; aspect-ratio: 2/3;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px;
}
.no-poster-icon { font-size: 1.5rem; opacity: 0.4; }
.no-poster-title { font-size: 0.75rem; color: white; text-align: center; font-weight: 500; line-height: 1.3; }

.list-card-status {
  position: absolute; top: 8px; right: 8px;
  font-size: 0.62rem; font-weight: 700; padding: 3px 8px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.status-airing    { background: var(--pink); color: white; }
.status-upcoming  { background: #f59e0b; color: white; }
.status-completed { background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.8); }

.list-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 28px 10px 10px;
}
.list-card-title  { font-size: 0.82rem; color: white; font-weight: 700; line-height: 1.2; margin-bottom: 2px; }
.list-card-couple { font-size: 0.68rem; color: var(--pink-light); }
.list-card-meta   { font-size: 0.68rem; color: rgba(255,255,255,0.65); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: white; padding: 48px 40px 24px; }
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; gap: 64px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); max-width: 220px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.social-link { font-size: 0.8rem; color: var(--pink-light); transition: color 0.2s; }
.social-link:hover { color: var(--pink); }
.footer-heading { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-link { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-link:hover { color: var(--pink-light); }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.3); max-width: 1300px; margin: 0 auto; }

.footer-fandoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 8px 20px;
}

/* ===== SERIES DETAIL ===== */
.series-detail {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 40px;
  align-items: start;
}

.series-poster-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.series-detail-poster {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: block;
}

.series-mdl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1b2838;
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity 0.2s;
  text-align: center;
  width: 100%;
}
.series-mdl-btn:hover { opacity: 0.82; }

.series-detail-info { flex: 1; }
.series-detail-info h1 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.series-detail-info p  { font-size: 0.9rem; line-height: 1.7; color: #444; margin-bottom: 8px; }
.series-detail-info h2 { font-size: 1rem; font-weight: 700; margin-top: 20px; margin-bottom: 8px; }

.series-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.meta-row { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.meta-label { color: var(--gray); min-width: 80px; font-size: 0.82rem; }
.meta-value { color: var(--black); font-weight: 500; }
.couple-value { color: var(--pink); font-weight: 600; }

.status-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.synopsis-block { margin-top: 8px; }
.synopsis-block h2 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.synopsis-block p  { font-size: 0.88rem; line-height: 1.75; color: #444; }

.teaser-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px; padding: 10px 24px;
  background: var(--pink); color: white; border-radius: 25px;
  font-size: 0.85rem; font-weight: 600; transition: background 0.2s;
}
.teaser-btn:hover { background: var(--pink-dark); }

.streaming-section { margin-top: 28px; }
.streaming-section h2 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.streaming-header-row { display: flex; justify-content: space-between; padding: 0 14px; margin-bottom: 6px; }
.streaming-col-label { font-size: 0.68rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== SERIES CAST ===== */
.series-cast-section { padding-top: 0; border-top: none; margin-top: 0; }
.series-cast-section h2 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.series-cast-list { display: flex; flex-direction: column; gap: 16px; }

.series-cast-card {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: opacity 0.2s;
}
.series-cast-card:hover { opacity: 0.8; }

.series-cast-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--border); flex-shrink: 0;
  transition: border-color 0.2s;
}
.series-cast-card:hover .series-cast-photo { border-color: var(--pink); }

.series-cast-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,45,155,0.08); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--pink); flex-shrink: 0;
}

.series-cast-info { display: flex; flex-direction: column; gap: 3px; }
.series-cast-name { font-weight: 700; font-size: 0.95rem; color: var(--black); }
.series-cast-fullname { font-size: 0.78rem; color: var(--gray); }
.series-cast-socials { display: flex; gap: 6px; margin-top: 4px; }
.series-cast-socials .actress-social-link img.social-icon { width: 24px; height: 24px; border-radius: 6px; }

/* ===== COUPLE TAGS ===== */
.couple-tag       { color: var(--pink); font-weight: 600; font-size: 0.88rem; transition: color 0.2s; }
.couple-tag:hover { color: var(--pink-dark); text-decoration: underline; }
.couple-tag-light       { color: var(--pink-light); font-size: 0.72rem; transition: color 0.2s; }
.couple-tag-light:hover { color: white; text-decoration: underline; }

/* ===== COUPLE PAGE ===== */
.couple-page-layout {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "name   name      name"
    "photo  info      actresses";
  gap: 24px 32px;
  align-items: start;
  margin-bottom: 48px;
}

.couple-name-bar {
  grid-area: name;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.couple-photo-area  { grid-area: photo; }
.couple-actresses-area { grid-area: actresses; display: flex; flex-direction: column; gap: 24px; }
.couple-info-area   { grid-area: info; }

.couple-main-photo {
  width: 100%; aspect-ratio: 2/3;
  border-radius: var(--radius); box-shadow: var(--shadow);
  object-fit: cover; object-position: top; display: block;
}

.couple-main-placeholder {
  width: 100%; aspect-ratio: 2/3;
  border-radius: var(--radius); background: rgba(255,45,155,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 700; color: var(--pink);
}

.couple-name-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; margin-bottom: 14px; width: 100%;
}

.couple-name { font-size: 2.2rem; font-weight: 700; line-height: 1; margin-bottom: 0; }
.couple-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.couple-meta-row { display: flex; gap: 10px; font-size: 0.85rem; align-items: baseline; }
.couple-meta-label { font-weight: 700; color: var(--black); min-width: 110px; flex-shrink: 0; font-size: 0.82rem; }
.couple-meta-value { color: #444; }
.couple-series-link { color: var(--pink); transition: text-decoration 0.2s; }
.couple-series-link:hover { text-decoration: underline; }
.couple-description { font-size: 0.85rem; line-height: 1.75; color: #555; margin: 0; text-align: justify; }

.couple-official-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border: 1.5px solid var(--pink); color: var(--pink);
  border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
}
.couple-official-btn:hover { background: var(--pink); color: white; }
.couple-official-icon {
  width: 15px; height: 15px; border-radius: 3px; object-fit: cover;
  filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(2879%) hue-rotate(311deg) brightness(94%) contrast(101%);
}
.couple-official-btn:hover .couple-official-icon { filter: brightness(0) invert(1); }

.couple-actresses { display: flex; flex-direction: column; gap: 24px; }
.couple-actress-card { display: flex; gap: 12px; align-items: flex-start; }
.couple-actress-photo-link { flex-shrink: 0; }

.couple-actress-photo {
  width: 76px; height: 76px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--border);
  transition: opacity 0.2s, border-color 0.2s;
}
.couple-actress-photo:hover { opacity: 0.85; border-color: var(--pink); }

.couple-actress-placeholder {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,45,155,0.08); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: var(--pink);
}

.couple-actress-info { display: flex; flex-direction: column; gap: 3px; padding-top: 6px; }
.couple-actress-name { font-weight: 700; font-size: 0.92rem; color: var(--black); transition: color 0.2s; line-height: 1.2; }
.couple-actress-name:hover { color: var(--pink); }
.couple-actress-fullname { font-size: 0.72rem; color: var(--gray); line-height: 1.3; }
.couple-actress-socials { display: flex; gap: 5px; margin-top: 5px; }
.couple-actress-social { display: inline-flex; }
.couple-social-icon { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; transition: opacity 0.2s, transform 0.2s; }
.couple-actress-social:hover .couple-social-icon { opacity: 0.75; transform: scale(1.1); }

.couple-section { margin-bottom: 48px; }

.couple-series-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.couple-series-card {
  width: 150px; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.couple-series-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.couple-series-poster { width: 150px; height: 225px; object-fit: cover; display: block; }
.couple-series-info { padding: 10px 12px; background: white; }
.couple-series-title { font-size: 0.8rem; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
.couple-series-year  { font-size: 0.7rem; color: var(--gray); }

/* ── Gallery carousel ── */
.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  overflow: visible;
  position: relative;
}

.gallery-item {
  position: absolute;
  border-radius: var(--radius-bg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.gallery-pos-center {
  width: 300px; height: 370px;
  opacity: 1; transform: translateX(0) scale(1);
  z-index: 5; box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.gallery-pos-1l {
  width: 160px; height: 210px; opacity: 0.6;
  transform: translateX(-250px) scale(0.88); z-index: 4;
}
.gallery-pos-1r {
  width: 160px; height: 210px; opacity: 0.6;
  transform: translateX(250px) scale(0.88); z-index: 4;
}
.gallery-pos-2l {
  width: 120px; height: 160px; opacity: 0.3;
  transform: translateX(-400px) scale(0.75); z-index: 3;
}
.gallery-pos-2r {
  width: 120px; height: 160px; opacity: 0.3;
  transform: translateX(400px) scale(0.75); z-index: 3;
}
.gallery-pos-hidden {
  opacity: 0;
  z-index: 1; pointer-events: none; visibility: hidden;
  display: none;
}

.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--pink); background: white; color: var(--pink);
  font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; box-shadow: var(--shadow);
  position: relative; z-index: 10;
}
.gallery-btn:hover { background: var(--pink); color: white; }

.gallery-dots { display: none; }
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; padding: 0;
}
.gallery-dot.active { background: var(--pink); transform: scale(1.2); }


/* ===== ACTRESS PROFILE ===== */
.actress-profile {
  display: grid;
  grid-template-columns: 280px 1fr 180px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.actress-profile-photo {
  width: 280px; height: 340px;
  border-radius: var(--radius);
  object-fit: cover; object-position: top;
  box-shadow: var(--shadow); flex-shrink: 0;
}

.actress-profile-placeholder {
  width: 280px; height: 340px;
  border-radius: var(--radius); background: rgba(255,45,155,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 700; color: var(--pink);
}

.actress-profile-right { flex: 1; min-width: 240px; padding-top: 8px; }
.actress-profile-name { font-size: 2.4rem; font-weight: 700; margin-bottom: 4px; line-height: 1; }
.actress-profile-fullname { font-size: 0.95rem; color: var(--gray); margin-bottom: 20px; }
.actress-profile-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.actress-meta-row { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.actress-meta-label { color: var(--gray); min-width: 50px; font-size: 0.82rem; }
.actress-meta-value { font-weight: 500; color: var(--black); }
.actress-profile-socials { display: flex; gap: 10px; margin-bottom: 16px; }
.actress-social-link img.social-icon {
  width: 32px; height: 32px; border-radius: 8px;
  object-fit: cover; transition: opacity 0.2s, transform 0.2s;
}
.actress-social-link:hover img { opacity: 0.75; transform: scale(1.08); }

.mdl-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--pink);
  border: 1.5px solid var(--pink); padding: 7px 18px;
  border-radius: 20px; transition: all 0.2s;
}
.mdl-link:hover { background: var(--pink); color: white; }

.actress-brands-col { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.brands-heading { font-size: 0.78rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.brands-list { display: flex; flex-direction: column; gap: 8px; }

.brand-card {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.brand-card-link { cursor: pointer; }
.brand-card-link:hover { box-shadow: var(--shadow); border-color: rgba(255,45,155,0.2); }
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 6px; flex-shrink: 0; background: #f9f9f9; padding: 4px; }
.brand-info { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.brand-name-link { color: var(--pink); }
.brand-date { font-size: 0.72rem; color: var(--gray); }

.actress-partners-col { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }

.partners-grid {
  display: flex; gap: 16px; flex-wrap: wrap;
  width: fit-content;
}

.partner-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; cursor: pointer;
  background: white; border-radius: var(--radius-sm); border: 1px solid var(--border);
  padding: 16px 12px; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  width: 140px;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(255,45,155,0.2); }

.partner-photo { width: 100px; height: 130px; border-radius: var(--radius-sm); object-fit: cover; object-position: top; }
.partner-photo-placeholder {
  width: 100px; height: 130px; border-radius: var(--radius-sm);
  background: rgba(255,45,155,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--pink);
}
.partner-name { font-weight: 700; font-size: 0.85rem; }
.partner-fullname { font-size: 0.7rem; color: var(--gray); line-height: 1.3; }
.partner-socials { display: flex; gap: 6px; }
.partner-socials .actress-social-link img.social-icon { width: 22px; height: 22px; border-radius: 5px; }

.actress-section { margin-bottom: 48px; }

.actress-series-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.actress-series-card {
  width: 140px; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s; border: 1px solid var(--border);
}
.actress-series-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.actress-series-poster { width: 140px; height: 210px; object-fit: cover; display: block; }
.actress-series-info { padding: 10px 12px; background: white; }
.actress-series-title { font-size: 0.78rem; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
.actress-series-year  { font-size: 0.68rem; color: var(--gray); }

/* ===== COUPLES LIST PAGE ===== */
.couples-list-filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 36px;
}

.cl-filter-btn {
  padding: 7px 18px; border-radius: 20px;
  border: 1.5px solid var(--border); background: white;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; color: #555; flex-shrink: 0;
}
.cl-filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.cl-filter-btn.active { background: var(--pink); border-color: var(--pink); color: white; }

.cl-search {
  padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 20px;
  font-size: 0.82rem; background: white; outline: none; transition: all 0.2s; width: 180px;
}
.cl-search:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,155,0.1); }

.cl-alphabet { display: flex; flex-wrap: wrap; gap: 6px; }

.cl-alpha-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: #555;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cl-alpha-btn:hover { border-color: var(--pink); color: var(--pink); }
.cl-alpha-btn.active { background: var(--pink); border-color: var(--pink); color: white; }

.couples-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 28px 20px;
}

.cl-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; cursor: pointer; transition: transform 0.2s;
}
.cl-card:hover { transform: translateY(-4px); }
.cl-card:hover .cl-name { color: var(--pink-dark); }

.cl-photo-wrap {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; flex-shrink: 0;
}
.cl-card:hover .cl-photo-wrap { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,45,155,0.1); }

.cl-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.cl-photo-placeholder {
  width: 100%; height: 100%; background: rgba(255,45,155,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--pink);
}
.cl-name { font-size: 0.82rem; font-weight: 600; color: var(--pink); text-align: center; line-height: 1.3; transition: color 0.2s; }
.cl-empty { text-align: center; padding: 60px 0; color: var(--gray); font-size: 0.95rem; }
.cl-fullname { font-size: 0.72rem; color: var(--gray); text-align: center; line-height: 1.3; margin-top: -6px; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0a12 100%);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,45,155,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: white;
  line-height: 1.15; max-width: 800px; margin: 0 auto 20px; position: relative; z-index: 1;
}
.about-hero-title span { color: var(--pink); }
.about-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 560px;
  margin: 0 auto; line-height: 1.7; position: relative; z-index: 1;
}

.about-article { max-width: 860px; margin: 0 auto; padding: 64px 40px; }
.about-section { margin-bottom: 64px; }

.about-h2 {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 32px;
  position: relative; display: inline-block;
}
.about-h2::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 48px; height: 3px; background: var(--pink); border-radius: 2px;
}

.about-intro { font-size: 1rem; line-height: 1.8; color: #444; margin-bottom: 32px; }

.about-blocks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 32px;
}

.about-block {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow);
}
.about-block-title {
  font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.about-block-title::before {
  content: ''; width: 4px; height: 20px; background: var(--pink);
  border-radius: 2px; flex-shrink: 0;
}
.about-block p { font-size: 0.88rem; line-height: 1.75; color: #555; }
.about-block ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.about-block ul li { font-size: 0.88rem; color: #555; padding-left: 16px; position: relative; line-height: 1.5; }
.about-block ul li::before { content: '·'; position: absolute; left: 4px; color: var(--pink); font-weight: 700; }

.about-reasons { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-reason {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: var(--radius-sm); border: 1px solid var(--border);
  padding: 20px; box-shadow: var(--shadow);
}
.about-reason-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--pink); color: white;
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-reason-content h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.about-reason-content p { font-size: 0.85rem; color: #555; line-height: 1.65; }

.about-full-section { background: white; width: 100%; padding: 64px 40px; }
.about-full-section-inner { max-width: 1300px; margin: 0 auto; }
.about-full-section.dark { background: var(--dark); }
.about-full-section.dark .about-h2 { color: white; }

.about-series-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }

.about-actress-grid {
  display: flex; flex-wrap: wrap; gap: 24px 16px;
  justify-content: center;
}
.about-actress-card {
  flex: 0 0 130px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; cursor: pointer; transition: transform 0.2s; text-align: center;
}
.about-actress-card:hover { transform: translateY(-4px); }
.about-actress-photo {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2.5px solid var(--border); transition: border-color 0.2s;
}
.about-actress-card:hover .about-actress-photo { border-color: var(--pink); }
.about-actress-name { font-size: 0.82rem; font-weight: 600; color: var(--pink); }
.about-actress-born { font-size: 0.72rem; color: var(--gray); }
.about-actress-socials { display: flex; gap: 5px; }
.about-actress-socials a img { width: 20px; height: 20px; border-radius: 5px; object-fit: cover; }

.about-upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }

/* ===== CONTACT PAGE ===== */
.contact-page { max-width: 600px; margin: 0 auto; padding: 64px 40px; }
.contact-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.contact-subtitle { font-size: 0.95rem; color: #555; line-height: 1.7; text-align: center; margin-bottom: 40px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: white;
  outline: none;
  transition: all 0.2s;
  color: var(--black);
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,45,155,0.1);
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: #aaa; }

.contact-textarea {
  border-radius: 18px;
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  align-self: flex-start;
  padding: 12px 32px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-submit:hover { background: var(--pink-dark); transform: translateY(-1px); }

.contact-success {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.contact-success p { font-size: 0.88rem; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .actress-profile { grid-template-columns: 220px 1fr; }
  .actress-partners-col { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .partners-grid { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .couple-page-layout { grid-template-columns: 180px 1fr; grid-template-areas: "name name" "photo info" "actresses actresses"; }
  .couple-actresses-area { flex-direction: row; flex-wrap: wrap; }
  .series-detail { grid-template-columns: 220px 1fr; }
  .series-cast-section { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
  .series-cast-list { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  /* Navbar: fixed so overflow-x:hidden on html/body doesn't break sticky */
  .navbar { position: fixed; left: 0; right: 0; top: 0; }
  body { padding-top: 64px; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-search-btn { display: flex !important; }
  .nav-logo-img { height: 28px; }
  .mobile-nav-btns { display: flex; align-items: center; gap: 2px; }
  .banner { height: 160px; }
  .section { padding: 40px 20px; }
  .airing-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 20px; }
  .footer-inner { gap: 32px; }
  .filters { flex-direction: column; align-items: stretch; }
  .about-full-section { padding: 40px 20px; }
  .about-article { padding: 40px 20px; }
  .about-hero { padding: 48px 20px; }
  .about-blocks { grid-template-columns: 1fr; }
  .contact-page { padding: 40px 20px; }

  /* Mobile gallery */
  .gallery-carousel { flex-direction: column; gap: 16px; }
  .gallery-btn { display: none; }
  .gallery-track {
    width: calc(100% - 32px);
    height: auto;
    overflow: visible;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 28px;
    margin: 0 auto;
  }
  .gallery-item {
    position: relative;
    display: none;
  }
  .gallery-pos-center {
    display: block;
    width: 85vw;
    max-width: 340px;
    height: 280px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .gallery-pos-1l, .gallery-pos-1r, .gallery-pos-2l, .gallery-pos-2r, .gallery-pos-hidden {
    display: none;
  }
  .gallery-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 16px; }
  .series-detail { grid-template-columns: 1fr; }
  .actress-profile { grid-template-columns: 1fr; text-align: center; }
  .actress-profile-photo, .actress-profile-placeholder { width: 100%; height: 300px; }
  .actress-profile-meta { align-items: center; }
  .actress-profile-socials { justify-content: center; }
  .actress-partners-col { grid-column: 1; }
  .couple-page-layout { grid-template-columns: 1fr 1fr; grid-template-areas: "name name" "photo actresses" "info info"; gap: 16px; }
  .couple-name { font-size: 1.8rem; }
  .couple-meta-row { flex-direction: column; gap: 2px; }
  .couple-meta-label { min-width: unset; }
  .gallery-pos-2l, .gallery-pos-2r { display: none; }
  .couples-list-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 20px 12px; }
  .cl-photo-wrap { width: 90px; height: 90px; }
  .cl-search { width: 140px; }
}

@media (max-width: 480px) {
  .popular-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .full-list-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ===== MOBILE SEARCH BUTTON ===== */
.mobile-search-btn {
  background: none;
  border: none;
  color: var(--pink);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-search-btn:hover { background: rgba(255,45,155,0.08); }
@media (min-width: 769px) { .mobile-search-btn { display: none !important; } }

/* ===== MOBILE INLINE SEARCH (inside navbar) ===== */
.mobile-nav-search {
  display: none;
  flex: 1;
  position: relative;
  margin: 0 8px;
}
.mobile-nav-search .search-input { width: 100%; }
.mobile-nav-search .search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 999;
}
@media (max-width: 768px) {
  .mobile-nav-search:not(.hidden) { display: flex; flex-direction: column; }
}

/* ===== MOBILE FANDOMS ===== */
.mobile-fandoms-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s;
}
.mobile-fandoms-toggle:hover { background: rgba(255,45,155,0.07); color: var(--pink); }
.fandoms-arrow { font-size: 0.75rem; transition: transform 0.2s; }
.fandoms-arrow.open { transform: rotate(180deg); }

.mobile-fandoms {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid rgba(255,45,155,0.15);
  margin-left: 14px;
  margin-bottom: 4px;
}
.mobile-fandoms a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: #555;
  display: block;
  transition: all 0.15s;
}
.mobile-fandoms a:hover { background: rgba(255,45,155,0.07); color: var(--pink); }

/* ===== CONTACT PAGE ===== */
.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 40px;
}
.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-subtitle {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.03em;
}
.contact-optional { font-weight: 400; color: var(--gray); font-size: 0.75rem; }
.contact-input,
.contact-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: #fafafa;
  outline: none;
  transition: all 0.2s;
  color: var(--black);
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,45,155,0.1);
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: #bbb; }
.contact-textarea { border-radius: var(--radius-sm); min-height: 160px; resize: vertical; }

.contact-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray);
  transition: all 0.2s;
  background: #fafafa;
}
.contact-file-label:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,45,155,0.03); }
.contact-file-icon { font-size: 1.1rem; }
.contact-file-input { display: none; }
.contact-file-name { font-size: 0.8rem; color: var(--pink); margin-top: 4px; }

.contact-submit {
  align-self: flex-start;
  padding: 12px 36px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-submit:hover { background: var(--pink-dark); transform: translateY(-1px); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.contact-success {
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-success-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.contact-success p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.contact-error { color: #e53e3e; font-size: 0.82rem; margin-top: 4px; }

@media (max-width: 560px) {
  .contact-row { grid-template-columns: 1fr; }
}