/* Auto-bundled view CSS - do not edit views inline */

/* from app/view/404.php */
/* ── 404 TAM SAYFA İÇERİK ── */
.p404-outer {
  min-height: calc(100vh - 160px); /* header+footer yüksekliğini çıkar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Arka plan ışık efektleri */
.p404-outer::before {
  content: '';
  position: absolute;
  top: -30%; left: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,216,91,.06) 0%, transparent 65%);
  pointer-events: none;
  animation: p404glow 9s ease-in-out infinite alternate;
}
.p404-outer::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(255,80,50,.04) 0%, transparent 65%);
  pointer-events: none;
  animation: p404glow 12s ease-in-out infinite alternate-reverse;
}
@keyframes p404glow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(2%,4%) scale(1.1); }
}

/* Izgara çizgisi */
.p404-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,216,91,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,216,91,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* İçerik merkezi */
.p404-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

/* Büyük 404 */
.p404-num {
  font-size: clamp(90px, 18vw, 160px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #FFD85B 0%, #f59e0b 55%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  filter: drop-shadow(0 0 35px rgba(255,216,91,.2));
  margin-bottom: 1.2rem;
}

/* Başlık */
.p404-title {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--hb-text, #f0f0f0);
  margin-bottom: .6rem;
}

/* Açıklama */
.p404-sub {
  font-size: .97rem;
  color: var(--hb-muted, #9ca3af);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Butonlar */
.p404-btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.p404-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1.6rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.p404-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.4); text-decoration: none; }
.p404-btn-home {
  background: linear-gradient(135deg, #FFD85B, #f59e0b);
  color: #111;
  box-shadow: 0 4px 16px rgba(255,216,91,.2);
}
.p404-btn-tv {
  background: transparent;
  border: 1px solid rgba(255,216,91,.3);
  color: #FFD85B;
}
.p404-btn-tv:hover { background: rgba(255,216,91,.08); color: #FFD85B; }

/* Arama */
.p404-search-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto 2rem;
}
.p404-search-input {
  width: 100%;
  padding: .75rem 3.2rem .75rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--hb-text, #f0f0f0);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.p404-search-input:focus {
  border-color: rgba(255,216,91,.45);
  background: rgba(255,255,255,.08);
}
.p404-search-input::placeholder { color: var(--hb-muted, #6b7280); }
.p404-search-btn {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #FFD85B;
  color: #111;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.p404-search-btn:hover { background: #f59e0b; }

/* Ayırıcı */
.p404-sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0 0 1.5rem;
}

/* Hızlı linkler */
.p404-links-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--hb-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .9rem;
}
.p404-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.p404-link {
  padding: .35rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--hb-text, #d1d5db);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.p404-link:hover {
  background: rgba(255,216,91,.1);
  border-color: rgba(255,216,91,.3);
  color: #FFD85B;
  text-decoration: none;
}

/* Geri sayım */
.p404-countdown {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: var(--hb-muted, #6b7280);
}
.p404-countdown b { color: #FFD85B; }

/* Mobil */
@media (max-width: 480px) {
  .p404-btns { flex-direction: column; align-items: center; }
  .p404-btn  { width: 100%; justify-content: center; max-width: 280px; }
  .p404-num  { letter-spacing: -2px; }
}

/* from app/view/canli-tv-izle.php */
/* ── Sayfa H1 ── */
.ctv-page-h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hb-text, #fff);
    margin: .5rem 0 1rem;
    padding-left: .75rem;
    border-left: 4px solid #e30613;
}
@media (max-width: 576px){
    .ctv-page-h1 { font-size: 1.1rem; }
}

/* ── SEO İçerik Bölümü ── */
.ctv-seo-section {
    margin-top: 3rem;
    padding: 0 0 1rem;
}
.ctv-seo-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.6rem 0 .5rem;
    color: var(--hb-text, #fff);
}
.ctv-seo-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.2rem 0 .35rem;
    color: var(--hb-text, #fff);
}
.ctv-seo-section p {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--hb-text, #fff);
    margin-bottom: .75rem;
}
.ctv-seo-section p a {
    color: #e30613 !important;
}
.ctv-seo-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
}
.ctv-seo-section ul li {
    font-size: .88rem;
    color: var(--hb-text, #fff);
    padding: .2rem .6rem;
    background: var(--hb-card-bg, #1a1a1a);
    border: 1px solid rgba(227,6,19,.25);
    border-radius: 4px;
}
.ctv-seo-section ul li::before {
    content: '▸ ';
    color: #e30613;
    font-size: .75rem;
}

/* ── Kanal Kategorileri Blokları ── */
.ctv-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .75rem;
    margin: 1rem 0 1.5rem;
}
.ctv-cat-card {
    background: var(--hb-card-bg, #1a1a1a);
    border: 1px solid rgba(227,6,19,.2);
    border-radius: 8px;
    padding: .85rem .75rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ctv-cat-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
    transform: translateY(-2px);
    border-color: #e30613;
}
.ctv-cat-card .ctv-cat-icon {
    font-size: 1.6rem;
    margin-bottom: .35rem;
    display: block;
}
.ctv-cat-card .ctv-cat-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--hb-text, #fff);
    display: block;
}
.ctv-cat-card .ctv-cat-desc {
    font-size: .72rem;
    color: var(--hb-text, #fff);
    opacity: .65;
    display: block;
    margin-top: .2rem;
}

/* ── SSS Bölümü ── */
.ctv-faq-section {
    margin-top: 2.5rem;
    padding-bottom: 2rem;
}
.ctv-faq-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--hb-text, #fff);
    border-left: 4px solid #e30613;
    padding-left: .75rem;
}
.ctv-faq-item {
    border: 1px solid rgba(227,6,19,.2);
    border-radius: 8px;
    margin-bottom: .6rem;
    overflow: hidden;
    background: var(--hb-card-bg, #1a1a1a);
}
.ctv-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: .9rem 1rem;
    font-size: .93rem;
    font-weight: 600;
    color: var(--hb-text, #fff);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    transition: background .15s;
}
.ctv-faq-q:hover {
    background: rgba(227,6,19,.08);
}
.ctv-faq-q .ctv-faq-arrow {
    font-size: .75rem;
    transition: transform .25s;
    flex-shrink: 0;
    color: #e30613;
}
.ctv-faq-q[aria-expanded="true"] .ctv-faq-arrow {
    transform: rotate(180deg);
}
.ctv-faq-a {
    display: none;
    padding: 0 1rem .9rem;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--hb-text, #fff);
    border-top: 1px solid rgba(227,6,19,.15);
}
.ctv-faq-a.open {
    display: block;
}

/* Divider çizgi */
.ctv-divider {
    border: none;
    border-top: 1px solid rgba(227,6,19,.2);
    margin: 2.5rem 0;
}

/* from app/view/embed.php */
html, body { height:100%; margin:0; padding:0; }
  .wrap { position:relative; width:100%; height:100vh; max-height:100dvh; overflow:hidden; }
  iframe { display:block; width:100%; height:100%; border:0; aspect-ratio:16/9; }

  /* Link DOM'da kalsın ama görünmesin */
  .sr-only {
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space:nowrap !important;
    border:0 !important;
  }

/* from app/view/giris.php */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #0f172a;
      background-image: radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.15) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(236,72,153,.1) 0%, transparent 50%);
      padding: 1rem;
    }

    .card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 25px 50px rgba(0,0,0,.5);
    }

    .logo {
      text-align: center;
      margin-bottom: 2rem;
    }
    .logo-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .75rem;
      box-shadow: 0 8px 24px rgba(99,102,241,.4);
    }
    .logo-icon svg { width: 28px; height: 28px; fill: #fff; }
    .logo h1 { color: #f8fafc; font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; }
    .logo p  { color: #94a3b8; font-size: .8rem; margin-top: .25rem; }

    .alert {
      padding: .75rem 1rem;
      border-radius: 10px;
      font-size: .85rem;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .alert-error   { background: rgba(239,68,68,.12);  color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }
    .alert-info    { background: rgba(99,102,241,.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,.2); }

    label {
      display: block;
      color: #94a3b8;
      font-size: .78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .4rem;
    }

    .input-wrap {
      position: relative;
      margin-bottom: 1.1rem;
    }
    .input-wrap svg {
      position: absolute;
      left: .875rem;
      top: 50%;
      transform: translateY(-50%);
      width: 16px; height: 16px;
      fill: none; stroke: #475569; stroke-width: 2;
      pointer-events: none;
    }
    input[type=email],
    input[type=password],
    input[type=text] {
      width: 100%;
      padding: .7rem .875rem .7rem 2.5rem;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      color: #f1f5f9;
      font-size: .95rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    input:focus {
      border-color: #6366f1;
      box-shadow: 0 0 0 3px rgba(99,102,241,.25);
      background: rgba(255,255,255,.08);
    }
    input::placeholder { color: #475569; }

    /* OTP özel stil */
    .otp-input {
      text-align: center;
      letter-spacing: .4em;
      font-size: 1.5rem;
      font-weight: 700;
      padding-left: .875rem;
      max-width: 180px;
      margin: 0 auto;
      display: block;
    }

    .btn {
      width: 100%;
      padding: .8rem;
      border: none;
      border-radius: 10px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity .2s, transform .1s;
      margin-top: .5rem;
    }
    .btn:hover   { opacity: .9; }
    .btn:active  { transform: scale(.98); }
    .btn-primary {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff;
      box-shadow: 0 4px 15px rgba(99,102,241,.35);
    }

    .divider {
      text-align: center;
      color: #475569;
      font-size: .75rem;
      margin: 1.25rem 0 .5rem;
      position: relative;
    }
    .divider::before, .divider::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 38%;
      height: 1px;
      background: rgba(255,255,255,.07);
    }
    .divider::before { left: 0; }
    .divider::after  { right: 0; }

    .back-link {
      display: block;
      text-align: center;
      color: #64748b;
      font-size: .8rem;
      text-decoration: none;
      margin-top: 1rem;
    }
    .back-link:hover { color: #94a3b8; }

    .step-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(99,102,241,.15);
      color: #a5b4fc;
      border: 1px solid rgba(99,102,241,.25);
      border-radius: 20px;
      padding: .3rem .75rem;
      font-size: .75rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    .step-badge svg { width: 12px; height: 12px; fill: currentColor; }

    .timer {
      text-align: center;
      font-size: .75rem;
      color: #64748b;
      margin-top: .75rem;
    }
    .timer span { color: #a5b4fc; font-weight: 600; }

/* from app/view/yayin-akisi.php */
@keyframes tyaPls {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.25; transform:scale(.55); }
}

/* from app/view/yayin-akislari.php */
/* ── SEO + SSS Ortak ── */
.ya-seo-wrap {
    padding: 0 .5rem;
}
.ya-seo-divider {
    border: none;
    border-top: 1px solid rgba(227,6,19,.2);
    margin: 2rem 0;
}
/* ── SEO Metin ── */
.ya-seo-section {
    margin-bottom: 1.5rem;
}
.ya-seo-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hb-text, #fff);
    border-left: 4px solid #e30613;
    padding-left: .75rem;
    margin: 0 0 .75rem;
}
.ya-seo-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hb-text, #fff);
    margin: 1.4rem 0 .4rem;
}
.ya-seo-section p {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--hb-text, #fff);
    margin-bottom: .6rem;
}
.ya-seo-section p a {
    color: #e30613 !important;
    text-decoration: underline;
}
.ya-seo-tags {
    list-style: none;
    padding: 0;
    margin: .4rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .7rem;
}
.ya-seo-tags li {
    font-size: .82rem;
    color: var(--hb-text, #fff);
    padding: .2rem .55rem;
    background: var(--hb-card-bg, #1a1a1a);
    border: 1px solid rgba(227,6,19,.25);
    border-radius: 4px;
}
.ya-seo-tags li::before {
    content: '▸ ';
    color: #e30613;
    font-size: .72rem;
}
/* ── SSS ── */
.ya-faq-section {
    margin-bottom: 2rem;
}
.ya-faq-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hb-text, #fff);
    border-left: 4px solid #e30613;
    padding-left: .75rem;
    margin: 0 0 1rem;
}
.ya-faq-item {
    background: var(--hb-card-bg, #1a1a1a);
    border: 1px solid rgba(227,6,19,.2);
    border-radius: 8px;
    margin-bottom: .5rem;
    overflow: hidden;
}
.ya-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--hb-text, #fff);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    transition: background .15s;
}
.ya-faq-q:hover { background: rgba(227,6,19,.08); }
.ya-faq-arrow {
    font-size: .72rem;
    color: #e30613;
    flex-shrink: 0;
    transition: transform .25s;
}
.ya-faq-q[aria-expanded="true"] .ya-faq-arrow { transform: rotate(180deg); }
.ya-faq-a {
    display: none;
    padding: 0 1rem .85rem;
    font-size: .86rem;
    line-height: 1.7;
    color: var(--hb-text, #fff);
    border-top: 1px solid rgba(227,6,19,.15);
}
.ya-faq-a.open { display: block; }

/* from app/view/yerel-il.php */
.yil-ad-wrap{max-width:1200px;margin:.8rem auto;padding:0 1rem;text-align:center;}

.yil-head {
  background: linear-gradient(135deg,#1a1a2e 0%,#0f3460 100%);
  padding: 1.5rem 1.2rem;
  color: #fff;
}
.yil-head a.back {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .5rem;
}
.yil-head a.back:hover { color:#fff; }
.yil-head-row { display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; }
.yil-head h1 { font-size:1.7rem; font-weight:800; margin:0; flex:1; min-width:0; }
.yil-head .plaka-badge {
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: .25rem .7rem;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ba-slider-wrap { margin-bottom: 0; overflow: hidden; position: relative; }

/* ── Slider caption ── */
.ba-slider-wrap .carousel-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 4rem 1.4rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
  text-align: left;
}
.slider-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.9);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.01em;
}
/* Geçiş çizgileri — görsel altında, başlıkla çakışmıyor */
#yilSlider .carousel-indicators.numbered {
  position: static;
  margin: 0;
  padding: .4rem .5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: .25rem;
  justify-content: center;
  background: #0f3460;
  list-style: none;
}
#yilSlider .carousel-indicators.numbered li {
  flex: 1;
  max-width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
  border: none;
  text-indent: -9999px;
  opacity: 1 !important;
  cursor: pointer;
  transition: background .2s;
}
#yilSlider .carousel-indicators.numbered li:hover {
  background: rgba(255,255,255,.55);
}
#yilSlider .carousel-indicators.numbered li.active {
  background: #e8a020 !important;
}
@media(max-width:768px){
  .slider-title { font-size: 1.15rem; }
  .ba-slider-wrap .carousel-caption { bottom: 32px; padding: 3rem 1rem .75rem; }
}
@media(max-width:480px){
  .slider-title { font-size: 1rem; }
  .ba-slider-wrap .carousel-caption { bottom: 28px; padding: 2.5rem .8rem .6rem; }
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 1rem;
  padding: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.ba-card { border-radius:12px; overflow:hidden; background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.07); transition:transform .18s,box-shadow .18s; }
.ba-card:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,.12); }
.ba-card a { display:block; text-decoration:none; color:inherit; }
.ba-card figure { margin:0; aspect-ratio:16/9; overflow:hidden; }
.ba-card figure img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.ba-card:hover figure img { transform:scale(1.04); }
.ba-card-body { padding:.7rem .9rem .9rem; }
.ba-card-body h3 { font-size:.93rem; font-weight:600; margin:0 0 .4rem; line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ba-card-body time { font-size:.78rem; color:#888; }
.ba-loadmore { text-align:center; padding:1.5rem; }
.ba-loadmore button { background:#0f3460; color:#fff; border:none; padding:.7rem 2.5rem; border-radius:30px; font-size:.95rem; font-weight:600; cursor:pointer; transition:background .18s,transform .18s; }
.ba-loadmore button:hover { background:#1a1a2e; transform:translateY(-2px); }
.ba-loadmore button:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.slider-img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.carousel-item a { position:relative; display:block; z-index:1; }
.ctrl { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,.55); border:none; border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; z-index:20; pointer-events:auto; cursor:pointer; }
.ctrl.prev { left:10px; } .ctrl.next { right:10px; }
.ctrl:hover { background:rgba(0,0,0,.8); }
@media(max-width:576px){
  .ba-grid { grid-template-columns:1fr 1fr; gap:.6rem; padding:.6rem; }
  .ba-card-body h3 { font-size:.82rem; }
  .yil-head h1 { font-size:1.3rem; }
}
@media(max-width:380px){ .ba-grid { grid-template-columns:1fr; } }

/* from app/view/yerel.php */
.yerel-hero{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 60%,#0f3460 100%);padding:1.8rem 1.5rem 1.4rem;text-align:center;color:#fff;}
.yerel-hero h1{font-size:1.8rem;font-weight:800;margin-bottom:.3rem;}
.yerel-hero p{color:rgba(255,255,255,.7);font-size:.95rem;margin:0;}
.yerel-ad-wrap{max-width:1200px;margin:.8rem auto;padding:0 1rem;text-align:center;}
.yerel-il-section{max-width:1200px;margin:0 auto;padding:1.4rem 1rem 2rem;background:#0f3460;}
.yerel-il-section h2{font-size:1.15rem;font-weight:700;color:#fff;margin-bottom:1rem;padding-bottom:.4rem;border-bottom:3px solid #4a90d9;display:inline-block;}
.yerel-il-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.45rem;}
.yerel-il-item{display:flex;align-items:center;gap:.55rem;padding:.52rem .8rem;background:rgba(255,255,255,.92);border:1.5px solid rgba(255,255,255,.25);border-radius:10px;text-decoration:none;color:#1a1a2e;font-size:.88rem;font-weight:500;transition:all .15s;}
.yerel-il-item:hover{background:#0f3460;border-color:#0f3460;color:#fff;transform:translateY(-2px);box-shadow:0 4px 12px rgba(15,52,96,.22);text-decoration:none;}
.yerel-il-plaka{display:inline-flex;align-items:center;justify-content:center;min-width:30px;height:20px;background:#0f3460;color:#fff;border-radius:4px;font-size:.7rem;font-weight:700;flex-shrink:0;transition:background .15s;}
.yerel-il-item:hover .yerel-il-plaka{background:rgba(255,255,255,.25);}
@media(max-width:576px){
  .yerel-hero h1{font-size:1.3rem;}
  .yerel-il-grid{grid-template-columns:repeat(2,1fr);gap:.35rem;}
  .yerel-il-item{font-size:.78rem;padding:.4rem .55rem;}
  .yerel-il-plaka{min-width:26px;height:18px;font-size:.66rem;}
}

/* from app/view/yerel.php */
.yerel-slider-wrap { margin-bottom: 0; overflow: hidden; position: relative; }
.yerel-slider-wrap .carousel-caption {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  padding: 4rem 1.4rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
  text-align: left;
}
.yerel-slider-wrap .slider-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.9);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yerel-slider-wrap .city-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: .15rem .65rem;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
  letter-spacing: .03em;
}
/* Geçiş çizgileri — başlığın altında, görsel içinde değil */
#yerelSlider .carousel-indicators.numbered {
  position: static;
  margin: 0;
  padding: .4rem .5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: .25rem;
  justify-content: center;
  background: #1a1a2e;
  list-style: none;
}
#yerelSlider .carousel-indicators.numbered li {
  flex: 1;
  max-width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
  border: none;
  text-indent: -9999px;
  opacity: 1 !important;
  cursor: pointer;
  transition: background .2s;
}
#yerelSlider .carousel-indicators.numbered li:hover {
  background: rgba(255,255,255,.55);
}
#yerelSlider .carousel-indicators.numbered li.active {
  background: #e8a020 !important;
}
#yerelSlider .slider-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
#yerelSlider .carousel-item a { position: relative; display: block; z-index: 1; }
#yerelSlider .ctrl { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.55); border: none; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; z-index: 20; pointer-events: auto; cursor: pointer; }
#yerelSlider .ctrl:hover { background: rgba(0,0,0,.8); }
#yerelSlider .ctrl.prev { left: 10px; }
#yerelSlider .ctrl.next { right: 10px; }
@media(max-width:768px){
  .yerel-slider-wrap .slider-title { font-size: 1.1rem; }
  .yerel-slider-wrap .carousel-caption { bottom: 24px; padding: 3rem 1rem .85rem; }
}
@media(max-width:480px){
  .yerel-slider-wrap .slider-title { font-size: .95rem; }
  .yerel-slider-wrap .carousel-caption { bottom: 20px; padding: 2.5rem .8rem .7rem; }
  #yerelSlider .carousel-indicators.numbered li { height: 3px; }
}

/* from app/view/yorum_lazy.php */
/* ---- Sadece sol içerik sütununa sığ (sidebarı bozmaz) ---- */
.channel #yorum,            /* kanal sayfası sol sütunu */
.channel #yorum .yorum-card,
#yorum,                     /* blog/diğer sayfalar için fallback */
#yorum .yorum-card{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

/* Modern kart görünümü */
#yorum .yorum-card{
  border:1px solid #eee; border-radius:14px; overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.04); background:#fff;
}
#yorum .yorum-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; border-bottom:1px solid #f0f0f0; background:#fcfcfd;
}
#yorum .yorum-title{font-weight:800; font-size:1.15rem; display:flex; gap:.5rem; align-items:center;}
#yorum .badge-pill{border-radius:999px}
#yorum .yorum-body{padding:14px 16px}

/* Liste */
.comment{border-bottom:1px solid #f3f3f3; padding:12px 0}
.comment:last-child{border-bottom:none}
.comment .name{font-weight:600}
.comment .date{color:#889; font-size:.9rem}
.comment .text{margin-top:.35rem; word-break:break-word; overflow-wrap:anywhere}

/* Form */
.comment-form .form-control{border-radius:.6rem}
.comment-form .form-control:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.15); border-color:#80bdff}

/* Lazy kapsayıcı */
#yorum-collapsible{max-height:0; overflow:hidden; transition:max-height .5s ease}
#yorum-collapsible.expanding{ -webkit-mask-image:none; mask-image:none }
#yorum-collapsible.expanded { max-height:none }

/* Alttaki “göster” alanı */
#yorum-unfurl-box{
  display:flex; align-items:center; justify-content:center;
  gap:.75rem; padding:12px; border:1px dashed #e3e3e3;
  border-radius:10px; background:#fafafa; margin-top:8px;
}
#yorum-loading{ display:none; align-items:center; gap:.5rem; font-size:.95rem; color:#666 }
.spinner{ width:18px;height:18px;border-radius:50%;
  border:2px solid #ddd;border-top-color:#999;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ── Inline style utilities (migrated from views) ── */
.u-w-full-block{width:100%;display:block}
.u-fs-13{font-size:1.3rem}
.u-fs-75-nowrap{font-size:.75rem;white-space:nowrap}
.u-pad-section-top{padding:1rem 2rem 0}
.u-mb-15{margin-bottom:1.5rem}
.u-flex-col-start{flex-direction:column;gap:.5rem;align-items:flex-start}
.u-text-gold{color:#FFD85B}
.u-max-w-160{max-width:160px}
.u-avatar-round{border-radius:50%;object-fit:cover}
.u-subtext{margin:.5rem 0 0;opacity:.85;font-size:.95rem}
.u-mb-1{margin-bottom:1rem}
.u-btn-compact{width:auto;padding:.5rem 1.2rem;font-size:.82rem;border-radius:8px}
.u-valign-mr{vertical-align:middle;margin-right:.3rem}
.u-section-divider{margin-top:2rem;padding-top:1.5rem;border-top:1px dashed #2E2E42}
.u-heading-gold{font-size:1.2rem;margin-bottom:1rem;color:#FFD85B}
.u-list-reset{list-style:none;padding:0;margin:0}
.u-mb-75{margin-bottom:.75rem}
.u-link-blue{color:#7EB8F7;text-decoration:none;font-weight:600}
.u-meta-line{display:block;font-size:.8rem;opacity:.7;margin-top:.15rem}
.u-w-full{width:100%}
.u-text-red-bold{color:#e30613;font-weight:600}
.u-sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}
.u-text-center{text-align:center}
.u-progress-bar{height:100%;width:var(--pct,0%)}
.u-h-1{height:1px}
.u-img-responsive{max-width:100%;width:100%;height:auto;display:block;object-fit:unset}
.u-text-right{text-align:right}
.u-bg-black-white{background:#000;color:#fff}
.u-scroll-box{overflow-y:scroll;max-height:380px}
