/* ==========================================================================
   B10.media Modern Card-Based News UI Framework
   Refined Clean & Thin Typography Reform (Strictly NO Heavy Weights)
   All typography, paddings & margins use REM units (Strictly NO PX)
   ========================================================================== */
:root,
[data-theme="light"] {
  --bg-primary: #F0F2F5;
  --bg-surface: rgba(255, 255, 255, 0.45);
  --bg-surface-solid: #FFFFFF;
  --bg-surface-hover: rgba(255, 255, 255, 0.85);

  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;

  --border-color: transparent;
  --divider-color: rgba(0, 0, 0, 0.08);

  --accent-color: #C8102E;
  --accent-hover: #990011;
  --success-color: #10B981;
  --danger-color: #C8102E;

  --shadow-sm: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.02);
  --shadow-md: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.04);

  --radius-sm: 0.25rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.25rem;
  --radius-pill: 0.25rem;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] {
  --bg-primary: #0F1115;
  --bg-surface: rgba(20, 23, 30, 0.55);
  --bg-surface-solid: #161922;
  --bg-surface-hover: rgba(28, 32, 42, 0.85);

  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;

  --border-color: transparent;
  --divider-color: rgba(255, 255, 255, 0.08);

  --accent-color: #C8102E;
  --accent-hover: #990011;
  --success-color: #10B981;
  --danger-color: #C8102E;

  --shadow-sm: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.15);
  --shadow-md: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
  width: 100%;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img,
video,
iframe,
embed,
object,
table,
picture,
svg,
canvas {
  max-width: 100% !important;
  height: auto;
  box-sizing: border-box !important;
}

img {
  display: block;
}

/* ==========================================================================
   Header Bar (Zengin Duruş & Kaydırılınca Küçülen Sticky Engine)
   ========================================================================== */
.site-header-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 1.25rem;
}

.header-b10-bar {
  position: relative;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
  margin-bottom: 1.25rem;
}

.header-floating-weather-tag {
  position: absolute;
  right: 2.25rem;
  top: 100%;
  margin-top: 0;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.3125rem 0.9375rem 0.375rem 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  z-index: 95;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: none;
}

:root[data-theme="dark"] .header-floating-weather-tag {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.header-b10-bar.scrolled .header-floating-weather-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
}

.header-floating-weather-tag .weather-city {
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.71875rem;
  letter-spacing: 0.04em;
}

.header-floating-weather-tag .weather-temp-group {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.header-floating-weather-tag .weather-icon-sun {
  color: #F59E0B;
  font-size: 0.875rem;
}

.header-floating-weather-tag .weather-temp {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.header-floating-weather-tag .weather-divider {
  width: 0.0625rem;
  height: 0.875rem;
  background-color: var(--divider-color);
}

.header-floating-weather-tag .weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.header-floating-weather-tag .weather-detail-item i {
  font-size: 0.78125rem;
  color: var(--text-secondary);
}

.header-floating-weather-tag .weather-detail-item small {
  font-size: 0.78125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

:root[data-theme="dark"] .header-b10-bar {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.header-b10-bar.scrolled {
  padding: 0.35rem 1.5rem;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .header-b10-bar.scrolled {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.45);
}

.site-logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: none !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .logo-icon,
.site-logo-inline .logo-icon {
  color: var(--accent-color);
  fill: currentColor;
  margin-right: 0.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.site-logo:hover .logo-icon {
  transform: none;
}

.header-b10-bar.scrolled .site-logo {
  font-size: 1.375rem;
}

.site-logo .logo-b10 {
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  font-size: 1em;
  line-height: 1;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

:root[data-theme="dark"] .site-logo .logo-b10,
[data-theme="dark"] .site-logo .logo-b10,
.dark-theme .site-logo .logo-b10,
body.dark-mode .site-logo .logo-b10 {
  color: #FFFFFF !important;
}

.site-logo .logo-dot {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1em;
  line-height: 1;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .logo-media {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68em;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.01em;
  margin-left: 0.05em;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 0.05em;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link-item {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  padding: 0.375rem 0.65rem;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .nav-link-item:hover,
[data-theme="dark"] .nav-link-item.active {
  background: rgba(255, 255, 255, 0.08);
}

.ai-manifesto-btn {
  position: relative;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1C1948 0%, #2A2665 50%, #3B368C 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1rem rgba(42, 38, 101, 0.4), inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.ai-manifesto-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0.5rem 1.5rem rgba(59, 54, 140, 0.65), inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.6);
}

.ai-btn-icon {
  font-size: 1.3125rem;
  color: #FFFFFF;
  font-weight: 900;
}

.ai-btn-pulse-ring {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  border-radius: var(--radius-pill);
  border: 0.0625rem solid rgba(129, 140, 248, 0.6);
  animation: aiPulseRing 2.5s infinite cubic-bezier(0.45, 0, 0.55, 1);
  pointer-events: none;
}

@keyframes aiPulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* ==========================================================================
   B10.media Saf Cam Blur Mimarili Glassmorphic Onboarding Modal
   ========================================================================== */
.ai-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ai-modal-card-replica {
  position: relative;
  width: 100%;
  max-width: 38rem;
  min-height: 34rem;
  background: var(--bg-surface);
  backdrop-filter: blur(2.5rem) saturate(1.8);
  -webkit-backdrop-filter: blur(2.5rem) saturate(1.8);
  border: none !important;
  border-radius: 0.25rem;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.18);
  padding: 2.75rem 3.25rem 3rem 3.25rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.92) translateY(1.5rem);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root[data-theme="dark"] .ai-modal-card-replica {
  background: rgba(20, 23, 30, 0.78);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
}

.ai-modal-overlay.active .ai-modal-card-replica {
  transform: scale(1) translateY(0);
}

.ai-replica-skip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.ai-replica-skip-btn:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateX(0.125rem);
}

.ai-replica-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.0rem;
  letter-spacing: -0.02em;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.site-logo-inline {
  display: inline-flex;
  align-items: center;
}

.site-logo-inline .logo-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.35rem;
  align-self: center;
}

.site-logo-inline .logo-b10 {
  font-weight: 900;
  color: var(--text-primary);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-logo-inline .logo-dot {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
}

.site-logo-inline .logo-media {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.01em;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 0.1875rem;
}

.ai-replica-badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2.5rem 0;
}

/* 360 Derece Kesintisiz Dönen Büyüleyici Neon Işık Halkası */
.badge-glow-ring {
  position: absolute;
  width: 11.5rem;
  height: 11.5rem;
  border-radius: var(--radius-pill);
  background: conic-gradient(from 0deg, transparent 0%, #6366F1 30%, #EF4444 60%, transparent 100%);
  animation: rotateGlow 4s linear infinite;
  filter: blur(0.75rem);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ai-replica-badge-circle {
  position: relative;
  z-index: 2;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1A164C 0%, #252068 50%, #352E90 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.25rem 3rem rgba(37, 32, 104, 0.5), inset 0 0.125rem 0.25rem rgba(255, 255, 255, 0.4);
  border: none !important;
}

.ai-replica-badge-circle span {
  font-size: 4.5rem;
  color: #FFFFFF;
  font-weight: 900;
}

.ai-replica-content-body {
  position: relative;
  min-height: 7.5rem;
}

.ai-replica-step {
  display: none;
}

.ai-replica-step.active {
  display: block;
  animation: replicaFadeIn 0.4s ease;
}

@keyframes replicaFadeIn {
  from {
    opacity: 0;
    transform: translateX(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-replica-title {
  font-size: 2rem;
  font-weight: 600;
  /* Kalın değil, ince ve kibar tipografi */
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.ai-replica-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  /* İnce ve ferah paragraf */
  line-height: 1.6;
  text-align: left;
}

.ai-replica-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.ai-replica-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ai-replica-dots .dot-item {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: var(--radius-pill);
  background-color: var(--divider-color);
  border: 0.0625rem solid var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-replica-dots .dot-item.active {
  width: 1.5rem;
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}

.ai-replica-next-btn {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: var(--radius-pill);
  background-color: var(--bg-surface-hover);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ai-replica-next-btn:hover {
  background-color: var(--text-primary);
  color: var(--bg-surface-solid);
  transform: scale(1.08);
}

.header-weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

:root[data-theme="dark"] .header-weather-widget {
  background: rgba(255, 255, 255, 0.08);
}

.header-weather-widget:hover {
  background: rgba(0, 0, 0, 0.07);
}

:root[data-theme="dark"] .header-weather-widget:hover {
  background: rgba(255, 255, 255, 0.14);
}

.weather-city {
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
}

.weather-temp-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.weather-icon-sun {
  color: #F59E0B;
  font-size: 0.8125rem;
}

.weather-temp {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.78125rem;
}

.weather-divider {
  width: 0.0625rem;
  height: 0.75rem;
  background-color: var(--divider-color);
}

.weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78125rem;
  color: var(--text-muted);
  font-weight: 400;
}

.weather-detail-item i {
  font-size: 0.78125rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.weather-detail-item small {
  font-size: 0.78125rem;
}



.search-toggle-btn,
.theme-toggle-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.search-toggle-btn:hover,
.theme-toggle-icon-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

:root[data-theme="dark"] .search-toggle-btn:hover,
:root[data-theme="dark"] .theme-toggle-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CANLI SON DAKİKA TICKER BANDI (3D Katmanlı & Tam Dikey Açık Zemin Dijital Saat)
   ========================================================================== */
.breaking-news-card-ticker {
  background: var(--bg-surface-solid);
  border-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid var(--divider-color);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  height: 2.75rem;
}

.breaking-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color, #C8102E);
  color: #FFFFFF;
  padding: 0 0.875rem;
  height: 100%;
  font-size: 0.9375rem;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-sm, 0.25rem) 0 0 var(--radius-sm, 0.25rem);
}

.breaking-badge-icon i {
  animation: pulse-lightning 2s infinite ease-in-out;
}

@keyframes pulse-lightning {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0.0625rem rgba(255,255,255,0.4)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 0.25rem rgba(255,255,255,0.9)); }
}

.breaking-badge-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 0 1.25rem;
  height: 100%;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 0.78125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0.25rem 0 0.75rem rgba(0, 0, 0, 0.22);
}

.stat-highlight.stat-glow-active,
.stat-pill-val.stat-glow-active {
  color: var(--accent-color, #C8102E) !important;
  text-shadow: 0 0 0.5rem rgba(200, 16, 46, 0.4);
  transition: all 0.25s ease-out;
}

.breaking-clock-badge {
  font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary, #0F172A);
  background-color: var(--bg-surface, #F1F5F9);
  padding: 0 1rem;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  border-right: 0.0625rem solid var(--divider-color);
  flex-shrink: 0;
  box-shadow: inset 0.125rem 0 0.375rem rgba(0, 0, 0, 0.06);
}

:root[data-theme="dark"] .breaking-clock-badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: #F8FAFC;
  border-right-color: rgba(255, 255, 255, 0.1);
}

.breaking-icon {
  font-size: 1.125rem !important;
  color: #38BDF8 !important;
  animation: pulseLightningCyan 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

@keyframes pulseLightningCyan {
  0% {
    opacity: 0.6;
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 0.45rem rgba(56, 189, 248, 0.9));
  }
  100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
}

.breaking-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding-left: 1rem;
}

.breaking-ticker-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.breaking-ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.35s;
}

.breaking-ticker-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.breaking-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  transition: color var(--transition-fast), transform 0.3s ease;
}

.breaking-ticker-item:hover .breaking-title {
  color: var(--accent-color);
}

.breaking-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-right: 0.875rem;
  flex-shrink: 0;
}

.breaking-nav-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid var(--divider-color);
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.breaking-nav-btn:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.breaking-nav-btn span {
  font-size: 1.125rem;
}

.hero-container-wrapper {
  padding-top: 0;
  margin-bottom: 1.25rem;
}

.hero-unified-block {
  position: relative;
  width: 100%;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-surface-solid);
  margin-bottom: 1.25rem;
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 28rem 1fr;
  width: 100%;
  height: 35rem;
  max-height: 35rem;
  background-color: var(--bg-surface-solid);
  overflow: hidden;
}

@media (max-width: 75rem) {
  .hero-split-layout {
    grid-template-columns: 24rem 1fr;
  }
}

@media (max-width: 62rem) {
  .hero-split-layout {
    grid-template-columns: 1fr;
  }
}

.hero-editorial-panel {
  padding: 2.5rem 2.5rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-surface-solid);
  position: relative;
  z-index: 5;
  border-right: 0.0625rem solid var(--divider-color);
  transition: background 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

.hero-editorial-panel.is-son-dakika-active {
  background: linear-gradient(135deg, #8B0018 0%, #C8102E 50%, #720014 100%) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 0 3.5rem rgba(0, 0, 0, 0.4), 0 0.5rem 2rem rgba(200, 16, 46, 0.3) !important;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
  position: relative;
  overflow: hidden;
  transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease, box-shadow 0.5s ease;
}

.hero-editorial-panel.is-son-dakika-active::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: kjGlareSweep 3.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 6;
}

@keyframes kjGlareSweep {
  0% { left: -60%; }
  40% { left: 140%; }
  100% { left: 140%; }
}



.hero-editorial-panel.is-son-dakika-active .hero-editorial-title a,
.hero-editorial-panel.is-son-dakika-active .hero-editorial-summary,
.hero-editorial-panel.is-son-dakika-active .hero-counter,
.hero-editorial-panel.is-son-dakika-active .hero-simple-link,
.hero-editorial-panel.is-son-dakika-active .hero-simple-link span {
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-editorial-title a:hover {
  color: #FFE4E6 !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-editorial-summary {
  color: rgba(255, 255, 255, 0.92) !important;
}

.hero-editorial-panel.is-son-dakika-active .counter-divider,
.hero-editorial-panel.is-son-dakika-active .total-num {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-editorial-panel.is-son-dakika-active .current-num {
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-live-badge {
  background: #FFFFFF !important;
  color: #C8102E !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0.25rem 0.375rem 1rem rgba(0, 0, 0, 0.35) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-live-badge .live-text {
  color: #C8102E !important;
}

.hero-editorial-panel.is-son-dakika-active .live-dot {
  background-color: #C8102E !important;
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25) !important;
  animation: pulseDotRed 1.2s infinite ease-in-out !important;
}

@keyframes pulseDotRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 0.375rem rgba(200, 16, 46, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.hero-editorial-panel.is-son-dakika-active .hero-panel-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-son-dakika-active .progress-line-track {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-son-dakika-active .progress-line-fill {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0.625rem #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-circle-arrow-btn {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-circle-arrow-btn:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #C8102E !important;
  box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.3) !important;
}

/* --- Manşet Kategori Rengi Kartı --- */
.hero-editorial-panel.is-category-colored {
  background: var(--hero-cat-color, #C8102E) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 0 3.5rem rgba(0, 0, 0, 0.35), 0 0.5rem 2rem rgba(0, 0, 0, 0.25) !important;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
  position: relative;
  overflow: hidden;
  transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease, box-shadow 0.5s ease;
}

.hero-editorial-panel.is-category-colored::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: kjGlareSweep 3.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 6;
}

.hero-editorial-panel.is-category-colored .hero-editorial-title a,
.hero-editorial-panel.is-category-colored .hero-editorial-summary,
.hero-editorial-panel.is-category-colored .hero-counter,
.hero-editorial-panel.is-category-colored .hero-simple-link,
.hero-editorial-panel.is-category-colored .hero-simple-link span {
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-category-colored .hero-editorial-title a:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero-editorial-panel.is-category-colored .hero-editorial-summary {
  color: rgba(255, 255, 255, 0.92) !important;
}

.hero-editorial-panel.is-category-colored .counter-divider,
.hero-editorial-panel.is-category-colored .total-num {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-editorial-panel.is-category-colored .current-num {
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-category-colored .hero-live-badge {
  background: #FFFFFF !important;
  color: var(--hero-cat-color, #0F172A) !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0.25rem 0.375rem 1rem rgba(0, 0, 0, 0.35) !important;
}

.hero-editorial-panel.is-category-colored .hero-live-badge .live-text {
  color: var(--hero-cat-color, #0F172A) !important;
}

.hero-editorial-panel.is-category-colored .live-dot {
  background-color: var(--hero-cat-color, #0F172A) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3) !important;
  animation: pulseDotCategory 1.2s infinite ease-in-out !important;
}

@keyframes pulseDotCategory {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-editorial-panel.is-category-colored .hero-panel-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-category-colored .progress-line-track {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-category-colored .progress-line-fill {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0.625rem #FFFFFF !important;
}

.hero-editorial-panel.is-category-colored .hero-circle-arrow-btn {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-category-colored .hero-circle-arrow-btn:hover {
  background-color: #FFFFFF !important;
  color: var(--hero-cat-color, #0F172A) !important;
}

.hero-editorial-panel.is-category-colored .hero-social-dock .social-dock-actions {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn,
.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn i,
.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn .dock-count {
  color: #FFFFFF !important;
  background: transparent !important;
  opacity: 1 !important;
}

.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn:last-child {
  border-right: none !important;
}

.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn:hover,
.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn:hover i,
.hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn:hover .dock-count {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 1.125rem 0.4375rem 1.25rem;
  background-color: var(--accent-color, #C8102E);
  color: #FFFFFF;
  border-radius: 0 0.25rem 0.25rem 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  margin-left: -2.5rem;
  box-shadow: 0.25rem 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  z-index: 15;
  border: none;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-live-badge .live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.35);
  animation: pulseDotWhite 1.5s infinite ease-in-out;
}

@keyframes pulseDotWhite {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 0.375rem rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-live-badge .live-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-counter {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: baseline;
  letter-spacing: 0.02em;
}

.hero-counter .current-num {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.hero-counter .counter-divider {
  margin: 0 0.25rem;
  opacity: 0.5;
  font-weight: 400;
}

.hero-counter .total-num {
  font-weight: 400;
  opacity: 0.75;
}

.hero-text-slider-layer {
  position: relative;
  width: 100%;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: auto 0;
  min-height: 14rem;
  overflow: hidden;
}

.hero-text-item {
  display: none !important;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
}

.hero-text-item.active {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  animation: heroTextFadeIn 0.35s ease forwards !important;
}

@keyframes heroTextFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-editorial-title {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.hero-editorial-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.hero-editorial-title a:hover {
  color: var(--accent-color);
}

.hero-editorial-summary {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-simple-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 0.5rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-bottom: 0.5rem;
}

.hero-simple-link span.material-symbols-rounded {
  font-size: 0.9375rem;
  transition: transform var(--transition-fast);
}

.hero-simple-link:hover {
  color: var(--accent-hover);
}

.hero-simple-link:hover span.material-symbols-rounded {
  transform: translateX(0.25rem);
}

.hero-social-dock {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 100%;
}

.hero-editorial-panel .hero-social-dock {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

.hero-editorial-panel .hero-social-dock .social-dock-actions {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

:root[data-theme="dark"] .hero-editorial-panel .hero-social-dock .social-dock-actions {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.hero-editorial-panel .hero-social-dock .dock-action-btn {
  color: var(--text-muted, #64748B) !important;
  background: transparent !important;
  height: 2.25rem;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.07) !important;
}

:root[data-theme="dark"] .hero-editorial-panel .hero-social-dock .dock-action-btn {
  border-right-color: rgba(255, 255, 255, 0.08) !important;
}

.hero-editorial-panel .hero-social-dock .dock-action-btn:last-child {
  border-right: none !important;
}

.hero-editorial-panel .hero-social-dock .dock-action-btn:hover {
  color: var(--text-muted, #64748B) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

:root[data-theme="dark"] .hero-editorial-panel .hero-social-dock .dock-action-btn:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .social-dock-actions {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
  border-bottom: none !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn i,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn .dock-count {
  color: #FFFFFF !important;
  background: transparent !important;
  opacity: 1 !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:last-child {
  border-right: none !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover i,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover .dock-count {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.hero-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0 !important;
  padding-top: 0.625rem !important;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.07) !important;
  width: 100%;
  flex-shrink: 0;
}

:root[data-theme="dark"] .hero-panel-bottom {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-panel-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
}

.hero-panel-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.hero-nav-arrow-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-circle-arrow-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--bg-surface-hover);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-circle-arrow-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #FFFFFF;
  transform: scale(1.05);
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  min-height: 35rem;
  overflow: hidden;
}

.hero-visual-stage .hero-slides-inner {
  height: 100% !important;
  min-height: 35rem !important;
  border-radius: 0 !important;
}

.hero-slides-inner {
  position: relative;
  height: 35rem;
  min-height: 35rem;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.hero-slides-inner::after {
  display: none;
}

.hero-bg-slider-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-bg-media-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0F1D;
  overflow: hidden;
}

.hero-bg-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Minimalist Video Controls at Top-Right Corner */
.hero-video-controls {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(0.375rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  padding: 0.25rem 0.375rem;
  border-radius: 2rem;
  z-index: 10;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.hero-video-btn {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hero-video-btn:hover {
  background: #FFFFFF;
  color: #0F172A;
  transform: scale(1.1);
}

.hero-video-btn:active {
  transform: scale(0.95);
}

.hero-bg-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-left: 0.375rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.hero-read-more span.material-symbols-rounded {
  font-size: 0.8125rem;
  transition: transform var(--transition-fast);
}

.hero-read-more:hover {
  color: var(--accent-hover);
}

.hero-read-more:hover span.material-symbols-rounded {
  transform: translateX(0.1875rem);
}

.hero-nav-row-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding-bottom: 0;
}

.progress-line-track {
  flex: 1;
  height: 0.2rem;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .progress-line-track {
  background-color: rgba(255, 255, 255, 0.18);
}

.progress-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

.hero-nav-text-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-text-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-primary);
  transition: opacity var(--transition-fast);
}

.nav-text-btn .material-symbols-rounded {
  font-size: 1rem;
}

.nav-text-btn:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Finans Bandı (Manşet Altına Tam Bitişik Birleşik Kutu)
   ========================================================================== */
.finance-ticker-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.finance-card-centered {
  background: var(--bg-surface-solid);
  border: none !important;
  border-radius: 0.25rem !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 0.875rem 1.5rem;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem;
  width: 100%;
}


:root[data-theme="dark"] .finance-card-centered {
  background: rgba(18, 22, 30, 0.65);
  border: none !important;
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.5), inset 0 0.0625rem 0.0625rem rgba(255, 255, 255, 0.1);
}

.finance-ticker-items-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex: 1;
  min-width: 0;
  gap: 0.75rem;
  flex-wrap: nowrap !important;
  padding-right: 2.25rem !important;
  border-right: 0.0625rem solid var(--divider-color);
  overflow: hidden;
}

.finance-weather-col {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 1.5rem !important;
}

.weather-hero-layout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-hero-icon {
  font-size: 2.125rem;
  color: #F59E0B;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.weather-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

.weather-city-top {
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.weather-temp-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.weather-big-temp {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.finance-weather-sub {
  font-size: 0.78125rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
}

.finance-weather-sub i {
  font-size: 0.78125rem;
  color: var(--text-muted);
}

.finance-col {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  white-space: nowrap;
  border-right: 0.0625rem solid var(--divider-color);
  padding-right: clamp(0.5rem, 0.9vw, 1.25rem);
}

.finance-col:last-child {
  border-right: none !important;
  padding-right: 1.25rem !important;
}

.finance-name {
  font-size: 0.78125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.finance-val-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.finance-val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.finance-val.finance-updated.up {
  color: var(--success-color, #10b981);
}

.finance-val.finance-updated.down {
  color: var(--danger-color, #ef4444);
}



.finance-badge {
  font-size: 0.8125rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
}

.finance-badge.up {
  color: var(--success-color);
}

.finance-badge.down {
  color: var(--danger-color);
}

/* ==========================================================================
   News Grid & Thin Clean Typography
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.25rem;
}

.news-card {
  background-color: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.news-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

/* 1. Üst Kısım: Beyaz Zeminli Başlık + 2-3 Satırlık Özet Kutusu */
.card-header-block {
  padding: 1.125rem 1.25rem 0.875rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-bottom: 0.0625rem solid var(--divider-color);
}

.card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.015em;
}

.card-summary {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2. Orta Kısım: Sıfır Radius Tam Genişlik Görsel */
.card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-primary);
  position: relative;
  border-radius: 0 !important;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.5s ease;
}

.news-card:hover .card-image {
  transform: scale(1.04);
}

/* 3. Alt Kısım: Birleşik Alt Bar */
.card-footer-row {
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-top: 0.0625rem solid var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-time-group {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.card-time-group .material-symbols-rounded {
  font-size: 0.875rem;
}

.card-footer-right-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-right-tools {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.card-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0;
  border-radius: 0;
  background: none !important;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

:root[data-theme="dark"] .card-category-badge {
  background: none !important;
  color: var(--text-muted);
}

.card-category-badge:hover {
  background: none !important;
  color: var(--text-primary);
}

.card-share-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-share-btn {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  padding: 0.125rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.card-share-btn:hover,
.card-share-wrapper.active .card-share-btn {
  color: var(--text-primary);
  background: none !important;
}

.share-popover-menu {
  position: absolute;
  bottom: 2.25rem;
  right: 0;
  background: var(--bg-surface-solid);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  border: 0.0625rem solid var(--divider-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.375rem);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}

.card-share-wrapper.active .share-popover-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-social-item {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.share-social-item:hover {
  color: var(--text-primary);
  transform: scale(1.15);
  background: none !important;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   YENİ MODERN CAM FOOTER BAR (Header ile Birebir Tam Şablon Simetrisi & 2 Sütunlu Bağlantılar)
   ========================================================================== */
.site-footer-wrapper {
  margin-top: 0;
  padding-bottom: 0;
}

.footer-glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(2.5rem) saturate(1.8);
  -webkit-backdrop-filter: blur(2.5rem) saturate(1.8);
  border-radius: 0.25rem 0.25rem 0 0;
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 3rem 3.5rem 1.75rem 3.5rem;
  display: flex;
  flex-direction: column;
}

:root[data-theme="dark"] .footer-glass-card {
  background: rgba(20, 23, 30, 0.55);
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-brand .site-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.footer-col-brand .footer-slogan {
  font-size: 0.84375rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.footer-col-brand .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.footer-col-brand .social-icon-item {
  color: var(--text-muted);
  font-size: 1.125rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-col-brand .social-icon-item:hover {
  color: var(--text-primary);
  transform: translateY(-0.125rem);
}

.footer-column-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-2col li a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.84375rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links-2col li a i {
  font-size: 0.625rem;
  color: var(--accent-color);
  opacity: 0.8;
  transition: transform var(--transition-fast);
}

.footer-links-2col li a:hover {
  color: var(--text-primary);
}

.footer-links-2col li a:hover i {
  transform: translateX(0.125rem);
  opacity: 1;
}

.footer-legal-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-legal-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

.footer-legal-links .legal-dot {
  opacity: 0.35;
  font-size: 0.75rem;
}

.footer-bottom-bar {
  padding-top: 0.75rem;
  border-top: 0.0625rem solid var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ==========================================================================
   Ultra-Luxury Developer Signature Brand Badge (semihcan.com)
   ========================================================================== */
.footer-copyright-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.developer-signature {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  vertical-align: middle;
  cursor: pointer;
  outline: none;
}

.signature-play-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
}

.signature-play-ring::before {
  content: '';
  position: absolute;
  inset: -0.1875rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.signature-play-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.08);
  border: 0.0625rem solid rgba(100, 116, 139, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.4375rem;
  color: var(--text-muted);
  padding-left: 0.0625rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.04);
}

.developer-signature:hover .signature-play-ring::before,
.developer-signature:focus-visible .signature-play-ring::before {
  opacity: 1;
  animation: signatureHaloPulse 2s infinite ease-in-out;
}

@keyframes signatureHaloPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.8;
  }
}

.developer-signature:hover .signature-play-icon,
.developer-signature:focus-visible .signature-play-icon {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: scale(1.12) rotate(360deg);
  box-shadow: 0 0.25rem 0.75rem rgba(15, 23, 42, 0.3);
}

.signature-tooltip {
  position: absolute;
  bottom: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem) scale(0.92);
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  align-items: flex-start;
  padding: 0.5rem 0.875rem;
  padding-right: 2rem;
  background: rgba(15, 23, 42, 0.92);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.5rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.25s ease;
  z-index: 100;
}

.signature-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.25rem;
  background: transparent;
}

.tooltip-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  line-height: 1;
}

.tooltip-main-text {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.2;
}

.tooltip-prefix {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.tooltip-name {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.015em;
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tooltip-ext-icon {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, color 0.25s ease;
}

.signature-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.25rem;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.92) transparent transparent transparent;
}

.developer-signature:hover .signature-tooltip,
.developer-signature:focus-visible .signature-tooltip,
.signature-tooltip:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.developer-signature:hover .tooltip-ext-icon {
  transform: translateY(-50%) translate(0.0625rem, -0.0625rem);
  color: var(--accent-color, #C8102E);
}

:root[data-theme="dark"] .signature-play-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

:root[data-theme="dark"] .signature-tooltip {
  background: rgba(22, 27, 38, 0.95);
  border-color: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .signature-tooltip::after {
  border-color: rgba(22, 27, 38, 0.95) transparent transparent transparent;
}

/* ==========================================================================
   Creative Stream Expander Capsule (Haber Akışı Dokunuşu)
   ========================================================================== */
.stream-expander-wrapper {
  position: relative;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-divider-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent 0%, var(--divider-color) 25%, var(--divider-color) 75%, transparent 100%);
  z-index: 1;
}

.stream-expander-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] .stream-expander-card {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

.stream-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stream-pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 0.5rem var(--accent-color);
  animation: pulseGlow 2s infinite ease-in-out;
}

.stream-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stream-load-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem 0.5rem 1.125rem;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--border-color);
  border-radius: 6.25rem;
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stream-btn-text {
  white-space: nowrap;
}

.stream-load-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}

.stream-btn-icon-ring {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.stream-load-btn:hover .stream-btn-icon-ring {
  background: var(--accent-color);
  color: #ffffff;
}

.stream-btn-icon-ring .material-symbols-rounded {
  font-size: 1.125rem;
  transition: transform 0.25s ease;
}

.stream-load-btn:hover .stream-btn-icon-ring .material-symbols-rounded {
  transform: translateY(0.125rem);
}

.stream-load-btn.loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.stream-load-btn.loading .stream-btn-icon-ring .material-symbols-rounded {
  animation: spinLoader 0.75s linear infinite;
}

.stream-load-btn.finished,
.stream-load-btn.finished:hover,
.stream-load-btn.finished:focus,
.stream-load-btn.finished:active {
  opacity: 1 !important;
  cursor: default !important;
  pointer-events: none !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #166534 !important;
  background: rgba(34, 197, 94, 0.08) !important;
  box-shadow: none !important;
  transform: none !important;
}

.stream-load-btn.finished .stream-btn-icon-ring {
  background: #22C55E !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .stream-load-btn.finished,
[data-theme="dark"] .stream-load-btn.finished:hover,
[data-theme="dark"] .stream-load-btn.finished:focus,
[data-theme="dark"] .stream-load-btn.finished:active {
  border-color: rgba(74, 222, 128, 0.3) !important;
  color: #4ADE80 !important;
  background: rgba(34, 197, 94, 0.12) !important;
}

.stream-counter {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-right: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-fade-in {
  animation: cardAppear 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* ==========================================================================
   News Detail Page (Haber Detay Sayfası Mimarisi)
   ========================================================================== */
.detail-container {
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 1.75rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.news-detail-article {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.detail-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.detail-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-back-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateX(-0.25rem);
}

.detail-top-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.125rem;
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6.25rem;
  box-shadow: 0 0.25rem 0.875rem rgba(200, 16, 46, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detail-top-category-badge:hover {
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.375rem 1.125rem rgba(200, 16, 46, 0.35);
}

.detail-master-card {
  background-color: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.detail-content-card {
  background-color: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem 2rem 2.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 48rem) {
  .detail-content-card {
    padding: 1.25rem 1rem;
    margin-top: 0.875rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
  }
}

.detail-card-header {
  padding: 1.125rem 1.25rem 0.875rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-bottom: 0.0625rem solid var(--divider-color);
}

.detail-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0 !important;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.detail-hero-frame {
  border-radius: 0 !important;
  border: none !important;
  overflow: hidden;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

.detail-hero-img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.detail-social-dock {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  background-color: var(--bg-surface-solid);
  border: none !important;
  border-top: 0.0625rem solid var(--divider-color) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.social-dock-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  border-bottom: 0.0625rem solid var(--divider-color);
}

.dock-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 2.375rem;
  padding: 0;
  background: var(--bg-surface-solid);
  border: none;
  border-right: 0.0625rem solid var(--divider-color);
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #64748B) !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dock-action-btn i {
  font-size: 0.875rem;
  color: var(--text-muted, #64748B) !important;
  transition: transform 0.2s ease;
}

.dock-action-btn .dock-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:last-child,
.dock-action-btn.views-btn {
  border-right: none;
}

.dock-action-btn:hover {
  background: var(--bg-surface-hover, rgba(0, 0, 0, 0.04)) !important;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:hover i,
.dock-action-btn:hover .dock-count {
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:hover i {
  transform: scale(1.12);
}

/* Aktif (Beğenilmiş / Kaydedilmiş) Durum - İçi dolu fakat içi boş halindeki aynı gri renk */
.dock-action-btn.liked,
.dock-action-btn.like-btn.active,
.dock-action-btn.bookmarked,
.dock-action-btn.bookmark-btn.active {
  background: var(--bg-surface-solid) !important;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn.liked i,
.dock-action-btn.like-btn.active i,
.dock-action-btn.bookmarked i,
.dock-action-btn.bookmark-btn.active i {
  color: var(--text-muted, #64748B) !important;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.dock-share-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.dock-share-wrapper .dock-action-btn {
  width: 100%;
  height: 100%;
  border-right: 0.0625rem solid var(--divider-color);
  border-radius: 0;
}

.dock-share-popover {
  position: absolute;
  bottom: calc(100% + 0.625rem);
  left: 0;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 100;
  min-width: 11.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-share-popover.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dock-share-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.dock-share-item:hover {
  background: var(--bg-primary);
}

.dock-share-item.whatsapp i {
  color: #25D366;
}

.dock-share-item.twitter i {
  color: var(--text-primary);
}

.dock-share-item.facebook i {
  color: #1877F2;
}

.dock-share-item.copy-link i {
  color: var(--accent-color);
}

.social-dock-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1rem;
  font-size: 0.78125rem;
  color: var(--text-muted);
  font-weight: 500;
  width: 100%;
}

.dock-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.dock-meta-item .material-symbols-rounded {
  font-size: 0.9375rem;
}

.dock-meta-divider {
  opacity: 0.35;
}

@media (max-width: 48rem) {
  .detail-card-header {
    padding: 0.625rem 0.875rem 0.45rem 0.875rem;
  }

  .detail-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .social-dock-meta {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   HABER DETAY MAKALE GÖVDESİ, ALINTI (BLOCKQUOTE) VE İÇERİK İÇİ GÖRSELLER
   ══════════════════════════════════════════════════════════════════════ */
.detail-body-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary, #0F172A);
  margin: 1.5rem 0;
  word-break: break-word;
}

.detail-body-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary, #1E293B);
}

.detail-body-content h2,
.detail-body-content h3 {
  font-weight: 800;
  color: var(--text-primary, #0F172A);
  margin: 2rem 0 1rem 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.detail-body-content h2 {
  font-size: 1.375rem;
  border-left: 0.25rem solid var(--accent-color, #C8102E);
  padding-left: 0.75rem;
}

.detail-body-content h3 {
  font-size: 1.1875rem;
}

/* Alıntı (Blockquote) Şık Kart Tasarımı */
.detail-body-content blockquote {
  position: relative;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  background-color: var(--bg-surface, #F8FAFC);
  border-left: 0.3125rem solid var(--accent-color, #C8102E) !important;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-primary, #0F172A);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}

:root[data-theme="dark"] .detail-body-content blockquote {
  background-color: rgba(255, 255, 255, 0.04);
  color: #F8FAFC;
}

.detail-body-content blockquote p {
  margin: 0;
  color: inherit;
  font-style: inherit;
}

/* İçerik İçi Görseller ve Şekiller (CKEditor & Direct HTML) */
.detail-body-content img,
.detail-body-content figure.image img,
.detail-body-content figure img {
  display: block;
  max-width: 100% !important;
  width: auto;
  height: auto;
  margin: 1.5rem auto;
  border-radius: var(--radius-md, 0.5rem);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
}

.detail-body-content figure.image,
.detail-body-content figure {
  margin: 1.75rem 0;
  text-align: center;
}

.detail-body-content figure figcaption {
  font-size: 0.8125rem;
  color: var(--text-muted, #64748B);
  margin-top: 0.5rem;
  font-style: italic;
  text-align: center;
}

.detail-body-content ul,
.detail-body-content ol {
  margin: 1.25rem 0 1.5rem 1.5rem;
  padding-left: 0.5rem;
}

.detail-body-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.detail-body-content a {
  color: var(--accent-color, #C8102E);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  font-weight: 600;
}

.detail-body-content a:hover {
  opacity: 0.85;
}

/* Dynamic Social Media Embed Cards & Responsive Media Embeds */
.article-embed-card {
  margin: 1.75rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
  clear: both;
}

.twitter-embed-wrapper {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  min-height: 12rem;
}

.twitter-embed-wrapper .twitter-tweet,
blockquote.twitter-tweet,
.twitter-tweet {
  margin: 0 auto !important;
  border: none !important;
  border-left: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: none !important;
}

.youtube-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  background-color: #000000;
}

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

/* Yorumlar Bölümü */
.detail-comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--divider-color);
  width: 100%;
  box-sizing: border-box;
}

/* İlgili Haberler Bölüm Başlığı & Grid */
.related-section-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-top: 1.75rem;
  padding-bottom: 0;
  border-top: 0.0625rem solid var(--divider-color);
  width: 100%;
  box-sizing: border-box;
}

.related-section-wrapper .news-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  clear: both !important;
}

.related-section-wrapper .news-grid .news-card:first-child {
  grid-column-start: 1 !important;
}

@media (max-width: 48rem) {
  .related-section-wrapper .news-grid {
    grid-template-columns: 1fr !important;
  }
  .related-section-wrapper .news-grid .news-card:first-child {
    grid-column-start: auto !important;
  }
}

.related-header-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.related-title-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 48rem) {
  .related-header-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.comments-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.comment-form-card {
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.comment-input {
  width: 100%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-primary);
  resize: vertical;
  outline: none;
  transition: border-color var(--transition-fast);
}

.comment-input:focus {
  border-color: var(--accent-color);
}

.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.875rem;
  flex-wrap: wrap;
}

.comment-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comment-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 6.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comment-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.875rem rgba(200, 16, 46, 0.3);
}

.detail-info-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-info-right-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.detail-info-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.detail-info-item i,
.detail-info-item .material-symbols-rounded {
  font-size: 0.9375rem;
  color: var(--accent-color);
}

.detail-info-author {
  font-weight: 700;
  color: var(--text-primary);
}

.detail-stats-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.detail-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  transition: all 0.25s ease;
}

.detail-stat-pill i {
  color: var(--accent-color);
  font-size: 0.8125rem;
}

.detail-stat-pill:hover {
  border-color: var(--accent-color);
  transform: translateY(-0.0625rem);
}

.detail-share-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.detail-share-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-0.125rem);
}

.detail-hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.25rem;
  border: 0.0625rem solid var(--divider-color);
  box-shadow: var(--shadow-md);
}

.detail-hero-img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  display: block;
}

.detail-spot-box {
  background-color: var(--bg-surface);
  border-left: 0.25rem solid var(--accent-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.65;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.02);
}

.detail-body-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
}

.detail-body-content p {
  margin-bottom: 1.5rem;
}

.detail-body-content h2,
.detail-body-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 2.25rem;
  margin-bottom: 1.125rem;
  letter-spacing: -0.015em;
}

.detail-body-content blockquote {
  background-color: var(--bg-surface);
  border-left: 0.25rem solid var(--accent-color);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.detail-tags-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 0.0625rem solid var(--divider-color);
  border-bottom: 0.0625rem solid var(--divider-color);
  margin-bottom: 3.5rem;
}

.detail-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  transition: all 0.25s ease;
}

.detail-tag-item:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.related-section-wrapper {
  padding-top: 2.5rem;
}

.related-header-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
}

.related-title-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: inline-block;
}

/* Responsive Footer */
@media (max-width: 63.9375rem) {
  .hero-glass-box {
    max-width: 100%;
  }

  .finance-card-centered {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-glass-card {
    padding: 2rem;
  }
}

@media (max-width: 47.9375rem) {
  .header-nav-links {
    display: none;
  }

  .detail-container {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
  }

  /* Mobilde header bar için sabit kibar boyutlar ve zemin beyaz duruşu */
  .header-b10-bar {
    padding: 0.625rem 1rem !important;
    background: var(--bg-surface-solid) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast) !important;
  }

  .header-b10-bar.scrolled {
    background: var(--bg-surface-solid) !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
  }

  :root[data-theme="dark"] .header-b10-bar {
    background: var(--bg-surface-solid) !important;
  }

  :root[data-theme="dark"] .header-b10-bar.scrolled {
    background: var(--bg-surface-solid) !important;
  }

  .site-logo,
  .header-b10-bar.scrolled .site-logo {
    font-size: 1.4rem !important;
    transition: none !important;
  }

  .site-logo .logo-b10,
  .site-logo .logo-dot,
  .site-logo .logo-media {
    transition: none !important;
  }

  .hero-container-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-unified-block {
    border-radius: 0 !important;
    width: 100% !important;
  }

  .hero-slider-section {
    border-radius: 0 !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }

  .hero-fixed-container {
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
  }

  .hero-glass-box {
    padding: 0.875rem 1rem !important;
    border-radius: 0.25rem !important;
    margin-bottom: 0 !important;
  }

  .hero-title {
    font-size: 1.125rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .hero-summary {
    font-size: 0.78125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
  }

  .hero-nav-row-compact {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 0.0625rem solid var(--divider-color);
    width: 100%;
    flex-shrink: 0;
  }

  /* Finance-ticker: Manşete Alttan Tam Bitişik Birleşik Mobil Kutu */
  .finance-ticker-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 20;
    width: 100% !important;
  }

  .finance-card-centered {
    border: none !important;
    border-top: 0.0625rem solid var(--divider-color) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.625rem;
    align-items: center;
    padding: 0.5rem 0.75rem;
    overflow: hidden;
    width: 100% !important;
  }

  .finance-ticker-items-container {
    display: block !important;
    flex-wrap: unset !important;
    height: 2.75rem !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    position: relative !important;
    border-right: 0.0625rem solid var(--divider-color) !important;
    padding-right: 0.5rem !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .finance-ticker-items-container::-webkit-scrollbar {
    display: none !important;
  }

  .finance-ticker-items-container .finance-col {
    height: 2.75rem !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 0.125rem !important;
    border-right: none !important;
    padding-right: 0 !important;
    flex: none !important;
  }

  .finance-ticker-items-container .finance-name {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1;
    margin: 0;
  }

  .finance-ticker-items-container .finance-val-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1;
    margin: 0;
  }

  .finance-ticker-items-container .finance-val {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
  }

  .finance-ticker-items-container .finance-badge {
    font-size: 0.6875rem;
    padding: 0.08rem 0.3rem;
    border-radius: var(--radius-sm);
    line-height: 1;
  }

  .finance-weather-col {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex;
    justify-content: center;
  }

  .weather-hero-layout {
    gap: 0.5rem;
  }

  .weather-hero-icon {
    font-size: 1.75rem;
  }

  .weather-big-temp {
    font-size: 0.875rem;
  }

  .finance-weather-sub {
    font-size: 0.6875rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-wrapper .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .footer-glass-card {
    border-radius: 0 !important;
    padding: 2rem 1.25rem 1.25rem 1.25rem !important;
    width: 100% !important;
  }

  .footer-legal-row {
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .footer-legal-links {
    flex-wrap: nowrap;
    gap: 0.375rem;
    font-size: 0.6875rem;
    white-space: nowrap;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    font-size: 0.75rem;
  }

  /* News Detail Mobile Single-Line Optimizations */
  .detail-title {
    font-size: 1.625rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .detail-hero-info-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    margin-bottom: 1.75rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .detail-hero-info-bar::-webkit-scrollbar {
    display: none;
  }

  .detail-info-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .detail-info-right-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
  }

  .detail-info-item {
    font-size: 0.75rem;
  }

  .detail-stats-group {
    gap: 0.375rem;
  }

  .detail-stat-pill {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .detail-stat-pill .stat-label {
    display: none;
  }

  .detail-share-group {
    gap: 0.25rem;
  }

  .detail-share-btn {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.75rem;
  }

  /* Stream Expander Capsule Mobile Rules */
  .stream-expander-wrapper {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .stream-expander-card {
    padding: 0.375rem 0.5rem;
    gap: 0.5rem;
    max-width: 100%;
    justify-content: center;
  }

  .stream-info,
  .stream-counter {
    display: none;
  }

  .stream-load-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    justify-content: center;
  }

  /* Mobile Sticky Header Stabilization (En Üst Sıfır Boşluk) */
  .site-header-wrapper {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .site-header-wrapper .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .header-b10-bar {
    padding: 0.625rem 1rem !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0.75rem;
  }

  .header-b10-bar.has-ad-below {
    margin-bottom: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .header-b10-bar .site-logo {
    font-size: 1.45rem;
  }

  .header-b10-bar.scrolled {
    padding: 0.45rem 0.875rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  }

  .header-b10-bar.scrolled .site-logo {
    font-size: 1.25rem;
  }

  .expandable-search-wrapper.active {
    width: 2.375rem !important;
  }

  .expandable-search-input {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   Full-Header Mobile Glass Search Overlay (Kusursuz Mobil Arama Barı)
   ========================================================================== */
.mobile-search-overlay {
  position: absolute;
  inset: 0;
  z-index: 1200;
  background: var(--bg-surface-solid);
  backdrop-filter: blur(3rem) saturate(1.8);
  -webkit-backdrop-filter: blur(3rem) saturate(1.8);
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .mobile-search-overlay {
  background: rgba(18, 21, 28, 0.95);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.45);
}

.mobile-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-search-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  padding: 0.375rem 0.875rem;
}

.mobile-search-icon {
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.mobile-search-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-search-field::placeholder {
  color: var(--text-muted);
  opacity: 0.9;
  font-weight: 500;
}

.mobile-search-close-btn {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mobile-search-close-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

/* ==========================================================================
   Expandable Search Bar Engine (Masaüstü Sola Doğru Süzülen Bar)
   ========================================================================== */
.header-right-tools {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}

.desktop-header-search-overlay {
  position: absolute;
  top: 0;
  left: 13rem;
  right: 0;
  bottom: 0;
  background: var(--bg-surface-solid, #FFFFFF);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.header-b10-bar.search-open .desktop-header-search-overlay {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.desktop-search-inner-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0.875rem;
}

.desktop-search-inner-bar .search-field-icon {
  font-size: 1.35rem;
  color: var(--text-muted, #64748B);
}

.desktop-search-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color, #0F172A);
  font-family: inherit;
}

.desktop-search-input::placeholder {
  color: var(--text-muted, #64748B);
  font-weight: 500;
  opacity: 0.85;
}

.desktop-search-close-btn {
  background: none;
  border: none;
  color: var(--text-muted, #64748B);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 0.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-search-close-btn:hover {
  background: var(--border-color, #E2E8F0);
  color: var(--accent-color, #C8102E);
}

:root[data-theme="dark"] .desktop-header-search-overlay {
  background: #1E293B;
  color: #F8FAFC;
}

:root[data-theme="dark"] .desktop-search-input {
  color: #F8FAFC;
}

:root[data-theme="dark"] .desktop-search-input::placeholder {
  color: #94A3B8;
}

.header-b10-bar.category-themed-bar .desktop-header-search-overlay {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

.header-b10-bar.category-themed-bar .desktop-search-input {
  color: #0F172A !important;
}

.header-b10-bar.category-themed-bar .desktop-search-input::placeholder {
  color: #64748B !important;
}

/* ==========================================================================
   Mobile Off-Canvas Glass Drawer Menu
   ========================================================================== */
.theme-toggle-icon-btn,
.mobile-menu-toggle-btn,
.search-toggle-btn {
  display: inline-flex;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: transparent !important;
  border: none !important;
  color: var(--text-primary) !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.15rem;
}

.theme-toggle-icon-btn i,
.mobile-menu-toggle-btn i,
.search-toggle-btn i {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle-btn {
  display: none;
}

.theme-toggle-icon-btn:hover,
.mobile-menu-toggle-btn:hover,
.search-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: var(--accent-color) !important;
  transform: scale(1.08);
}

:root[data-theme="dark"] .theme-toggle-icon-btn:hover,
:root[data-theme="dark"] .mobile-menu-toggle-btn:hover,
:root[data-theme="dark"] .search-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--accent-color) !important;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  opacity: 0;
  pointer-events: none;
  display: none;
  transition: opacity 0.35s ease;
  z-index: 1000;
}

.mobile-drawer-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 20rem;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface);
  backdrop-filter: blur(2rem) saturate(180%);
  -webkit-backdrop-filter: blur(2rem) saturate(180%);
  border-left: 0.0625rem solid var(--divider-color);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, visibility 0.35s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: none !important;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-drawer.open,
.mobile-menu-drawer.active,
#saved-news-drawer.open,
#saved-news-drawer.active {
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
  box-shadow: -0.5rem 0 3rem rgba(0, 0, 0, 0.25) !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 0.0625rem solid var(--divider-color);
}

.mobile-drawer-close-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-drawer-close-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

.mobile-drawer-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.mobile-drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mobile-drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.mobile-drawer-nav-item i {
  font-size: 1.125rem;
  color: var(--accent-color);
  width: 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}

.mobile-drawer-nav-item:hover {
  background: var(--bg-surface-hover);
  color: var(--accent-color);
  transform: translateX(0.25rem);
}

.mobile-drawer-nav-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.mobile-drawer-nav-item.active {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 0.25rem 0.875rem rgba(225, 29, 72, 0.3);
}

.mobile-drawer-nav-item.active i {
  color: #ffffff;
}

.mobile-drawer-divider {
  height: 0.0625rem;
  background: var(--divider-color);
  margin: 1.25rem 0;
}

.mobile-drawer-corporate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.mobile-drawer-corporate-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.mobile-drawer-corporate-list a:hover {
  color: var(--accent-color);
}

.mobile-drawer-corporate-list i {
  font-size: 0.625rem;
  color: var(--accent-color);
}

.mobile-drawer-footer {
  margin-top: 0.5rem;
}

.mobile-drawer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   YENİ ANASAYFA KUSURSUZ MOBİL UYUMLULUK (Mobile Responsive Engine)
   ========================================================================== */
@media (max-width: 48rem) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .container.hero-container-wrapper,
  .hero-container-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-unified-block {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .breaking-news-card-ticker {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    height: 2.5rem;
    margin-bottom: 0.875rem;
  }

  .breaking-badge-button {
    padding: 0 0.75rem !important;
    gap: 0 !important;
    justify-content: center;
  }

  .breaking-badge-button span:not(.breaking-icon) {
    display: none !important;
  }

  .breaking-clock-badge {
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }

  .breaking-ticker-viewport {
    padding-left: 0.5rem;
  }

  .breaking-title {
    font-size: 0.8125rem;
  }

  .breaking-nav-btns {
    display: none !important;
  }

  /* Hero Split Layout Mobil Dikey Katmanlama (Sıfır Kenar Boşluğu + Tam Ekran Yatay Genişlik) */
  /* ==========================================================================
     ULTRA-MODERN CINEMATIC 4:5 MOBILE HERO SLIDER WITH GRADIENT OVERLAY
     ========================================================================== */
  .hero-slider-section {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0.875rem !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #0A0F1D !important;
  }

  .hero-split-layout {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    max-height: none !important;
    min-height: unset !important;
    border-radius: 0 !important;
    border: none !important;
    overflow: hidden !important;
  }

  .hero-split-layout:has(video),
  .hero-split-layout:has(.hero-slide-video) {
    aspect-ratio: 4 / 5 !important;
  }

  /* 1. Görsel & Video Sahnesi (1:1 Kare Haber Görseli) */
  .hero-visual-stage,
  .hero-visual-stage .hero-slides-inner,
  .hero-slides-inner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
    min-height: unset !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
    background: #0A0F1D !important;
  }

  .hero-bg-slider-layer,
  .hero-bg-slide {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .hero-bg-image {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
  }

  .hero-bg-media-wrap,
  .hero-slide-video {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* 2. Sinematik Degradeli Metin & Aksiyon Paneli (Görselin Üzerinde) */
  .hero-editorial-panel {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 0.75rem 1rem 0.75rem 1rem !important;
    /* 1:1 görselin alt sınırından (%80) önce başlayan ve alt kısmı tam opak renge dönüştüren pürüzsüz degrade */
    background: linear-gradient(
      180deg,
      rgba(10, 15, 29, 0) 0%,
      rgba(10, 15, 29, 0) 35%,
      rgba(10, 15, 29, 0.4) 52%,
      rgba(10, 15, 29, 0.85) 68%,
      #0A0F1D 79%,
      #0A0F1D 100%
    ) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    pointer-events: none !important;
    transition: background 0.4s ease !important;
    overflow: hidden !important;
  }

  /* Mobil Son Dakika: Kırmızı degrade 1:1 görsel sınırından önce başlayıp alt bölümde tam opak kırmızıya dönüşür */
  .hero-editorial-panel.is-son-dakika-active {
    background: linear-gradient(
      180deg,
      rgba(139, 0, 24, 0) 0%,
      rgba(139, 0, 24, 0) 35%,
      rgba(139, 0, 24, 0.4) 52%,
      rgba(139, 0, 24, 0.85) 68%,
      #8B0018 79%,
      #8B0018 100%
    ) !important;
    box-shadow: none !important;
  }

  .hero-editorial-panel.is-son-dakika-active::after {
    display: none !important;
  }

  /* Mobil Kategori Rengi: Kategori rengi degrade 1:1 görsel sınırından önce başlayıp alt bölümde tam opak kategori rengine dönüşür */
  .hero-editorial-panel.is-category-colored {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--hero-cat-color, #C8102E) 0%, transparent) 0%,
      color-mix(in srgb, var(--hero-cat-color, #C8102E) 0%, transparent) 35%,
      color-mix(in srgb, var(--hero-cat-color, #C8102E) 40%, transparent) 52%,
      color-mix(in srgb, var(--hero-cat-color, #C8102E) 85%, transparent) 68%,
      var(--hero-cat-color, #C8102E) 79%,
      var(--hero-cat-color, #C8102E) 100%
    ) !important;
    box-shadow: none !important;
  }

  .hero-editorial-panel.is-category-colored::after {
    display: none !important;
  }

  /* 3. Üst Bilgi Rozetleri (Sol Canlı Kategori + Sağ Numaratör) */
  .hero-panel-top {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    height: 1.875rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 5 !important;
    margin-bottom: 0 !important;
    pointer-events: none !important;
  }

  .hero-live-badge {
    pointer-events: auto !important;
    height: 1.875rem !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    padding: 0 0.85rem !important;
    border-radius: 2rem !important;
    color: #FFFFFF !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(0.5rem) !important;
    -webkit-backdrop-filter: blur(0.5rem) !important;
    border: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
  }

  .hero-live-badge .live-dot {
    display: inline-block !important;
    width: 0.375rem !important;
    height: 0.375rem !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    flex-shrink: 0 !important;
  }

  .hero-counter {
    pointer-events: auto !important;
    height: 1.875rem !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    padding: 0 0.65rem !important;
    background: rgba(10, 15, 29, 0.65) !important;
    backdrop-filter: blur(0.5rem) !important;
    -webkit-backdrop-filter: blur(0.5rem) !important;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 2rem !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
  }

  .hero-counter .current-num {
    color: #FFFFFF !important;
    font-weight: 900 !important;
  }

  .hero-counter .counter-divider,
  .hero-counter .total-num {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  /* Video Kontrolleri (Mobilde Numaratörün Hemen Solunda Milimetrik Aynı Hizada) */
  .hero-video-controls {
    position: absolute !important;
    top: 1rem !important;
    right: 5.75rem !important;
    height: 1.875rem !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
    padding: 0 0.35rem !important;
    background: rgba(10, 15, 29, 0.65) !important;
    backdrop-filter: blur(0.5rem) !important;
    -webkit-backdrop-filter: blur(0.5rem) !important;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .hero-video-btn {
    width: 1.45rem !important;
    height: 1.45rem !important;
    font-size: 0.6875rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  /* 4. Başlık ve Açıklama (Alt Bölüm) */
  .hero-text-slider-layer {
    flex: unset !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
    margin-bottom: 0.375rem !important;
    z-index: 5 !important;
    pointer-events: none !important;
  }

  .hero-text-item.active {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    pointer-events: none !important;
  }

  .hero-editorial-title {
    font-size: 1.125rem !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9) !important;
    pointer-events: auto !important;
  }

  .hero-editorial-title a {
    color: #FFFFFF !important;
    transition: color 0.15s ease;
    pointer-events: auto !important;
  }

  .hero-editorial-title a:hover {
    color: #FFE4E6 !important;
  }

  .hero-editorial-summary {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 0.375rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.9) !important;
    pointer-events: none !important;
  }

  .hero-simple-link {
    display: none !important;
  }

  /* 5. Sosyal Dock (Tüm Manşet Çeşitlerinde Standart İnce Beyaz Ara Bölmeli 5'li Kutular) */
  .hero-editorial-panel .hero-social-dock,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock,
  .hero-editorial-panel.is-category-colored .hero-social-dock,
  .hero-social-dock {
    margin-top: 0 !important;
    margin-bottom: 0.625rem !important;
    padding: 0 !important;
    width: 100% !important;
    z-index: 5 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    pointer-events: auto !important;
  }

  .hero-social-dock * {
    pointer-events: auto !important;
  }

  .hero-editorial-panel .hero-social-dock .social-dock-actions,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock .social-dock-actions,
  .hero-editorial-panel.is-category-colored .hero-social-dock .social-dock-actions,
  .hero-social-dock .social-dock-actions {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    width: 100% !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn,
  .hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn,
  .hero-editorial-panel .hero-social-dock .dock-share-wrapper .dock-action-btn,
  .hero-social-dock .dock-action-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 2.25rem !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 0 !important;
    color: #FFFFFF !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    gap: 0.35rem !important;
    box-shadow: none !important;
    opacity: 1 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn:last-child,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:last-child,
  .hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn:last-child,
  .hero-social-dock .dock-action-btn:last-child {
    border-right: none !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn i,
  .hero-editorial-panel .hero-social-dock .dock-action-btn .dock-count,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn i,
  .hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn .dock-count,
  .hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn i,
  .hero-editorial-panel.is-category-colored .hero-social-dock .dock-action-btn .dock-count,
  .hero-social-dock .dock-action-btn i,
  .hero-social-dock .dock-action-btn .dock-count {
    color: #FFFFFF !important;
    font-size: 0.8125rem !important;
    opacity: 1 !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn i,
  .hero-social-dock .dock-action-btn i {
    font-size: 0.875rem !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn .dock-count,
  .hero-social-dock .dock-action-btn .dock-count {
    font-weight: 700 !important;
  }

  .hero-editorial-panel .hero-social-dock .dock-action-btn:hover,
  .hero-editorial-panel .hero-social-dock .dock-action-btn:active,
  .hero-social-dock .dock-action-btn:hover,
  .hero-social-dock .dock-action-btn:active {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .hero-social-dock .dock-share-wrapper {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
  }

  .hero-social-dock .dock-share-wrapper .dock-action-btn {
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.25) !important;
  }

  /* 6. Alt İlerleme Çubuğu & Dokunmatik Navigasyon Okları (Ayrık Çizgisiz Pürüzsüz Hizalama) */
  .hero-editorial-panel .hero-panel-bottom,
  .hero-editorial-panel.is-son-dakika-active .hero-panel-bottom,
  .hero-editorial-panel.is-category-colored .hero-panel-bottom,
  .hero-panel-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border: none !important;
    border-top: none !important;
    z-index: 5 !important;
    pointer-events: auto !important;
    width: 100% !important;
  }

  .progress-line-track {
    flex: 1 !important;
    height: 0.25rem !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
  }

  .progress-line-fill {
    background: #FFFFFF !important;
    height: 100% !important;
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.8) !important;
    border-radius: 1rem !important;
  }

  .hero-nav-arrow-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    pointer-events: auto !important;
  }

  .hero-circle-arrow-btn {
    width: 2rem !important;
    height: 2rem !important;
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(0.5rem) !important;
    -webkit-backdrop-filter: blur(0.5rem) !important;
    border: 0.0625rem solid rgba(255, 255, 255, 0.3) !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: transform 0.15s ease, background-color 0.15s ease !important;
  }

  .hero-circle-arrow-btn:active {
    transform: scale(0.92) !important;
    background: rgba(255, 255, 255, 0.35) !important;
  }



  /* ==========================================================================
     MOBİL HABER AKIŞI KARTLARI (GÖRSEL ÜSTTE -> BAŞLIK ORTADA -> İSTATİSTİK ALTTA)
     ========================================================================== */
  .news-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    margin-bottom: 1.25rem !important;
    background-color: var(--bg-surface-solid) !important;
    border: 0.0625rem solid var(--divider-color) !important;
  }

  /* 1. Görsel & Medya Karuseli En Üstte (Fotoğraflar 3:2, Videolar Akıllı 4:5) */
  .news-card .card-image-wrap,
  .news-card .insta-media-carousel {
    order: 1 !important;
    width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background-color: var(--bg-primary) !important;
  }

  .news-card .card-image-wrap:has(video),
  .news-card .card-image-wrap:has(.card-video-media),
  .news-card .insta-media-carousel:has(video),
  .news-card.has-video .card-image-wrap {
    aspect-ratio: 4 / 5 !important;
  }

  .news-card .card-image,
  .news-card .card-video-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
  }

  /* 2. Başlık ve Açıklama Ortada */
  .news-card .card-header-block {
    order: 2 !important;
    padding: 1rem 1rem 0.75rem 1rem !important;
    background-color: var(--bg-surface-solid) !important;
    border-bottom: none !important;
  }

  .news-card .card-title {
    font-size: 1.1875rem !important;
    font-weight: 800 !important;
    line-height: 1.32 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.4rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    letter-spacing: -0.015em !important;
  }

  .news-card .card-title a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
  }

  .news-card .card-summary {
    font-size: 0.84375rem !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    color: var(--text-secondary) !important;
    margin-bottom: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* 3. 5'li İstatistik Barı En Altta */
  .news-card .detail-social-dock {
    order: 3 !important;
    margin-top: auto !important;
    padding: 0.5rem 0.875rem 0.625rem 0.875rem !important;
    border-top: 0.0625rem solid var(--divider-color) !important;
    background-color: var(--bg-surface-solid) !important;
    width: 100% !important;
  }

  .news-card .detail-social-dock .social-dock-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  /* Lüks Anket Modülü Mobil Yükseklik & Berrak Görsel Katmanı */
  .poll-card-wrapper {
    min-height: 28rem !important;
    height: auto !important;
  }

  .poll-card-content {
    padding: 1.25rem 1rem 1rem 1rem !important;
    justify-content: flex-end !important;
  }

  .poll-card-header {
    margin-bottom: auto !important;
    min-height: unset !important;
  }

  .poll-card-body-content {
    margin-top: auto !important;
  }

  .poll-smart-fade-layer {
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0) 0%,
      rgba(15, 23, 42, 0.1) 35%,
      rgba(15, 23, 42, 0.75) 60%,
      rgba(15, 23, 42, 0.95) 80%,
      var(--ikincil-renk, #0F172A) 100%
    ) !important;
    pointer-events: none !important;
  }
}

/* ==========================================================================
   LÜKS ANKET MODÜLÜ (POLL MODULE) CSS STİLLERİ - PROMINENT IMAGE & GLASS UI
   ========================================================================== */
.poll-card-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--ikincil-renk, #0F172A) 0%, #192231 50%, var(--ikincil-renk, #0F172A) 100%);
  border: none !important;
  outline: none !important;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.28);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #FFFFFF;
}

/* Akıllı Görsel Katmanı (Top Center Hizalama & Alta Doğru Şeffaflaşan Yumuşak Geçiş) */
.poll-smart-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.poll-smart-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important; /* Yüz/Kafa her zaman üstte berrak görünür */
  display: block;
  opacity: 0.72;
  filter: brightness(0.85) contrast(1.05);
}

.poll-smart-fade-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.15) 28%,
    rgba(15, 23, 42, 0.78) 48%,
    rgba(15, 23, 42, 0.95) 70%,
    var(--ikincil-renk, #0F172A) 100%
  );
  z-index: 2;
  pointer-events: none !important;
}

.poll-card-content {
  position: relative;
  z-index: 3;
  padding: 1rem 1rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end; /* Soru ve seçenekler alta hizalanır */
  gap: 0.5rem;
}

.poll-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: auto; /* Üst rozet en tepede sabit kalır */
}

.poll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background-color: var(--accent-color, #C8102E);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4);
}

.poll-badge-icon {
  font-size: 0.9375rem;
}

.poll-total-votes-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(0.5rem);
  padding: 0.25rem 0.5625rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.poll-card-body-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.poll-question-title {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
  font-family: var(--font-heading);
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.8);
}

.poll-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}

.poll-option-item {
  width: 100%;
  position: relative;
}

.poll-option-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.625rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(0.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-option-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.3);
}

.poll-option-text strong,
.poll-option-text b,
.poll-option-text-result strong,
.poll-option-text-result b {
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.poll-radio-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 0.125rem solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.poll-option-btn:hover .poll-radio-dot {
  border-color: var(--accent-color, #C8102E);
  background-color: rgba(200, 16, 46, 0.2);
}

.radio-inner {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.poll-option-btn:hover .radio-inner {
  opacity: 1;
  transform: scale(1);
}

.poll-option-text {
  flex: 1;
  line-height: 1.25;
}

.poll-result-bar-wrap {
  width: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(0.375rem);
  padding: 0.4375rem 0.625rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
}

.poll-result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}

.poll-option-text-result {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.poll-percentage-badge {
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.0625rem 0.3125rem;
  border-radius: 0.1875rem;
  font-size: 0.78125rem;
}

.poll-progress-track {
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  overflow: hidden;
}

.poll-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color, #C8102E) 0%, #F87171 100%);
  border-radius: 0.25rem;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-footer-note {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.poll-voted-status-msg {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: -0.01em;
  opacity: 0.85;
}

.poll-voted-status-msg i {
  font-size: 0.6875rem;
}

/* Instagram-Style Multi-Media Carousel (Slider) Component                    */
.insta-media-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Galeri kaydırmasının sayfayı yatay taşırmasını engelle */
  contain: layout style;
  user-select: none;
  touch-action: pan-y;
  background-color: transparent;
}

.insta-carousel-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.insta-carousel-track::-webkit-scrollbar {
  display: none;
}

.insta-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.insta-carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.insta-carousel-item img.card-image,
.insta-carousel-item video.card-image,
.insta-carousel-item img,
.insta-carousel-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Hero Frame Container: Full Cover, Zero Side Bars */
.detail-hero-frame.insta-media-carousel {
  background-color: transparent;
  width: 100%;
}

.detail-hero-frame.insta-media-carousel .insta-carousel-item img.detail-hero-img,
.detail-hero-frame.insta-media-carousel .insta-carousel-item video.detail-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Minimal Top Right Badge (Instagram Style Icon Only) */
.insta-carousel-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 10;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  color: #FFFFFF;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.insta-carousel-badge i {
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* Video Badge Play Overlay Icon */
.insta-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.25rem);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: none;
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.insta-carousel-item:hover .insta-video-badge {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(200, 16, 46, 0.9);
}

/* Minimal Arrow Buttons (No Circle Border / No White Background) */
.insta-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  filter: drop-shadow(0 0.125rem 0.375rem rgba(0, 0, 0, 0.75));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.insta-media-carousel:hover .insta-carousel-nav {
  opacity: 0.85;
}

.insta-carousel-nav:hover {
  opacity: 1 !important;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.2);
}

.insta-carousel-nav.prev {
  left: 0.625rem;
}

.insta-carousel-nav.next {
  right: 0.625rem;
}

.insta-carousel-nav .material-symbols-rounded {
  font-size: 2.25rem;
  font-weight: 700;
}

/* Dots Indicator (Bottom Center • • •) */
.insta-carousel-dots {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(0.375rem);
  border-radius: 1rem;
  pointer-events: none;
}

.insta-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}

.insta-dot.active {
  background: #FFFFFF;
  transform: scale(1.3);
}

@media (max-width: 48rem) {
  .insta-carousel-nav {
    display: none;
  }

  .insta-carousel-badge {
    font-size: 0.625rem;
    padding: 0.1875rem 0.4375rem;
  }
}

/* ==========================================
   B10.media Dynamic Custom Pages & Editorial Hero System UI
   ========================================== */
.page-editorial-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2.75rem 1.5rem;
  background: var(--bg-surface, #ffffff);
  border-radius: var(--radius-md, 0.5rem);
  border: 0.0625rem solid var(--divider-color, rgba(226, 232, 240, 0.8));
  box-shadow: var(--shadow-sm, 0 0.125rem 0.375rem rgba(0, 0, 0, 0.03));
  position: relative;
  overflow: hidden;
}

.page-editorial-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.1875rem;
  background: var(--accent-color, #c8102e);
  border-radius: 0 0 0.25rem 0.25rem;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted, #64748b);
  margin-bottom: 1rem;
  background: var(--bg-hover, rgba(241, 245, 249, 0.6));
  padding: 0.3125rem 0.875rem;
  border-radius: 2rem;
  border: 0.0625rem solid var(--divider-color, #e2e8f0);
}

.page-breadcrumb a {
  color: var(--text-muted, #64748b);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
}

.page-breadcrumb a:hover {
  color: var(--accent-color, #c8102e);
}

.page-breadcrumb .sep {
  font-size: 0.5625rem;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
}

.page-breadcrumb .current {
  color: var(--text-primary, #0f172a);
  font-weight: 700;
}

.page-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text-primary, #0f172a);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-lead-summary {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary, #475569);
  max-width: 46rem;
  margin: 0 auto;
}

@media (max-width: 48rem) {
  .page-editorial-header {
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .page-main-title {
    font-size: 1.625rem;
  }
  
  .page-lead-summary {
    font-size: 0.875rem;
  }
}

/* Page Module Container & Rich Content Box */
.page-module-container {
  margin-bottom: 3.5rem;
}

.page-rich-content-box {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.page-rich-content-box h2,
.page-rich-content-box h3 {
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-rich-content-box p {
  margin-bottom: 1.25rem;
}

.page-rich-content-box ul,
.page-rich-content-box ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-rich-content-box li {
  margin-bottom: 0.5rem;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-info-card .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(200, 16, 46, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Contact Form Layout */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 64rem) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form-card,
.contact-map-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-card-title i {
  color: var(--accent-color);
}

.form-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.custom-glass-form .form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 40rem) {
  .custom-glass-form .form-grid-2col {
    grid-template-columns: 1fr;
  }
}

.custom-glass-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.custom-glass-form label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.custom-glass-form input,
.custom-glass-form select,
.custom-glass-form textarea {
  padding: 0.6875rem 0.875rem;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-sm, 0.375rem);
  font-family: inherit;
  font-size: 0.875rem;
  background: var(--bg-primary, #ffffff);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-glass-form input:focus,
.custom-glass-form select:focus,
.custom-glass-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.btn-submit-glass {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--accent-color, #c8102e);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm, 0.375rem);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-submit-glass:hover {
  transform: translateY(-1px);
  background: #a00c24;
}

.form-alert-box {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.875rem;
  font-weight: 600;
}

.form-alert-box.success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.map-embed-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* Künye Staff Cards */
.kunye-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.kunye-staff-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kunye-staff-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.staff-role-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: rgba(200, 16, 46, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.staff-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.staff-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Reklam Packages Grid */
.section-subheading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-subheading i {
  color: var(--accent-color);
}

.reklam-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.reklam-pkg-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reklam-pkg-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pkg-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.pkg-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pkg-size {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pkg-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.btn-pkg-action {
  display: block;
  text-align: center;
  padding: 0.625rem 1rem;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-pkg-action:hover {
  background: #a00c24;
}

/* Careers List */
.careers-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.career-job-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.btn-job-apply {
  padding: 0.5rem 1.25rem;
  background: var(--text-primary, #0f172a);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-job-apply:hover {
  background: var(--accent-color);
}

/* PWA Mobile App Smart Install Banner (Sadece Mobil Cihazlar İçin) */
.pwa-install-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 28rem;
  margin: 0 auto;
  z-index: 9999;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 0.875rem 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 821px) {
  .pwa-install-banner {
    display: none !important;
  }
}

.pwa-install-banner.active {
  transform: translateY(0);
}

.pwa-banner-icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--accent-color, #c8102e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0.25rem 0.75rem rgba(200, 16, 46, 0.3);
}

.pwa-banner-content {
  flex: 1;
  min-width: 0;
}

.pwa-banner-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.pwa-banner-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.125rem;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pwa-btn-install {
  background: var(--accent-color, #c8102e);
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.45rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.pwa-btn-install:hover {
  opacity: 0.9;
}

.pwa-btn-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

/* iOS Safari Visual PWA Installation Guide Sheet Modal */
.ios-pwa-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1rem;
}

.ios-pwa-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.ios-pwa-guide-card {
  width: 100%;
  max-width: 26rem;
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

html[data-theme="dark"] .ios-pwa-guide-card {
  background: #1E293B;
  color: #F8FAFC;
  border: 0.0625rem solid #334155;
}

.ios-pwa-modal-backdrop.is-open .ios-pwa-guide-card {
  transform: translateY(0);
}

.ios-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #E2E8F0;
}

html[data-theme="dark"] .ios-guide-header {
  border-bottom-color: #334155;
}

.ios-guide-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ios-guide-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  object-fit: cover;
  box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.12);
}

.ios-guide-title {
  font-size: 0.9375rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.ios-guide-sub {
  font-size: 0.75rem;
  color: #64748B;
  margin: 0.25rem 0 0 0;
}

html[data-theme="dark"] .ios-guide-sub {
  color: #94A3B8;
}

.ios-guide-close-btn {
  background: #F1F5F9;
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

html[data-theme="dark"] .ios-guide-close-btn {
  background: #334155;
  color: #CBD5E1;
}

.ios-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.125rem 0;
}

.ios-guide-step-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #F8FAFC;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid #E2E8F0;
}

html[data-theme="dark"] .ios-guide-step-row {
  background: #0F172A;
  border-color: #334155;
}

.ios-step-number {
  width: 1.625rem;
  height: 1.625rem;
  background: var(--accent-color, #C8102E);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ios-step-text {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #334155;
}

html[data-theme="dark"] .ios-step-text {
  color: #CBD5E1;
}

.ios-step-text strong {
  color: var(--accent-color, #C8102E);
}

.ios-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007AFF;
  color: #FFFFFF;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  margin: 0 0.125rem;
  vertical-align: middle;
}

.ios-guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
}

.ios-guide-pointer {
  font-size: 0.78125rem;
  font-weight: 700;
  color: #007AFF;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ios-bounce {
  animation: iosBounce 1.2s infinite ease-in-out;
}

@keyframes iosBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.25rem); }
}

.btn-ios-got-it {
  background: #007AFF;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.84375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   B10.media Dynamic Advertising Infrastructure Styles
   ========================================================================== */
.site-ad-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--bg-surface, rgba(255, 255, 255, 0.45));
  border: 0.0625rem solid var(--divider-color, rgba(0, 0, 0, 0.08));
  padding: 0.5rem;
  transition: border-color 0.3s ease;
}

.ad-badge-label {
  position: absolute;
  top: 0.25rem;
  right: 0.375rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  padding: 0.0625rem 0.3125rem;
  border-radius: 0.1875rem;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
}

.ad-banner-link {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.ad-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  object-fit: cover;
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ad-banner-link:hover .ad-banner-img {
  opacity: 0.95;
  transform: scale(1.005);
}

.ad-script-wrapper {
  width: 100%;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ad-feed-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.ad-feed-card .ad-banner-track-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.ad-feed-card .ad-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  display: block;
  box-shadow: var(--shadow-sm);
}

.site-header-ad-wrapper {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.site-footer-ad-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Haber İçi Seamless Reklam Alanı */
.in-article-ad-row {
  width: 100%;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.site-ad-container.in-article-ad {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.site-ad-container.in-article-ad .ad-banner-link {
  width: 100% !important;
  display: block !important;
}

.site-ad-container.in-article-ad .ad-banner-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 0.25rem;
  display: block !important;
  margin: 0 auto;
  object-fit: cover !important;
  box-shadow: var(--shadow-sm);
}

/* Header Attached Seamless Ad Zone (Header ile Bitişik Sıfır Boşluk) */
.header-b10-bar.has-ad-below {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.header-attached-ad-row {
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.header-attached-ad-row .ad-banner-img,
.header-attached-ad-row .site-ad-container,
.header-attached-ad-row iframe {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.finance-card-centered.has-ad-below,
.finance-ticker-wrapper.has-ad-below .finance-card-centered {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.finance-attached-ad-row {
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.finance-attached-ad-row .ad-banner-img,
.finance-attached-ad-row .site-ad-container,
.finance-attached-ad-row iframe {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.site-ad-container.header-attached-ad {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.site-ad-container.header-attached-ad .ad-banner-link {
  width: 100% !important;
  display: block !important;
}

.site-ad-container.header-attached-ad .ad-banner-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  display: block !important;
  margin: 0 auto;
  object-fit: cover !important;
  box-shadow: var(--shadow-sm);
}

.site-ad-container.finance-attached-ad {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.site-ad-container.finance-attached-ad .ad-banner-link {
  width: 100% !important;
  display: block !important;
}

.site-ad-container.finance-attached-ad .ad-banner-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  display: block !important;
  margin: 0 auto;
  object-fit: cover !important;
  box-shadow: var(--shadow-sm);
}

/* Footer Üstü Reklam Alanı */
.footer-attached-ad-row {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.site-ad-container.footer-attached-ad {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.site-ad-container.footer-attached-ad .ad-banner-link {
  width: 100% !important;
  display: block !important;
}

.site-ad-container.footer-attached-ad .ad-banner-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 0.25rem;
  display: block !important;
  margin: 0 auto;
  object-fit: cover !important;
  box-shadow: var(--shadow-sm);
}

/* Saved News Drawer Stilleri */
.nav-saved-news-btn {
  position: relative;
}

.saved-news-badge-count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  background: var(--accent-color, #C8102E);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: 50%;
  min-width: 1.1rem;
  height: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 0.15rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.saved-news-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.saved-news-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.saved-news-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 25rem;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface-solid, #FFFFFF);
  z-index: 2600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease, box-shadow 0.3s ease;
}

.saved-news-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  box-shadow: -0.5rem 0 3rem rgba(0, 0, 0, 0.25);
}

.saved-news-drawer-header {
  padding: 1.25rem;
  border-bottom: 0.0625rem solid var(--divider-color, #CBD5E1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-surface-solid);
}

.saved-news-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary, #0F172A);
}

.saved-news-title-icon {
  color: var(--accent-color, #C8102E);
}

.saved-news-close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted, #64748B);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.saved-news-list-container {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.saved-news-drawer-footer {
  padding: 1rem;
  border-top: 0.0625rem solid var(--divider-color, #CBD5E1);
  text-align: center;
  background: var(--bg-surface-solid);
}

.saved-news-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted, #64748B);
}

.saved-news-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted, #64748B);
}

.saved-news-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--divider-color, #CBD5E1);
}

.saved-news-empty-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.saved-news-item-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color, #E2E8F0);
  border-radius: 0.5rem;
  align-items: center;
}

.saved-news-item-thumb {
  width: 4rem;
  height: 3.25rem;
  object-fit: cover;
  border-radius: 0.375rem;
}

.saved-news-item-info {
  flex: 1;
  min-width: 0;
}

.saved-news-item-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary, #0F172A);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}

.remove-saved-item-btn {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   SLIM FULL-WIDTH SEAMLESS COOKIE BAR (Minimalist & Non-Intrusive)
   ========================================================================== */
.cookie-bar-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  display: none;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(0.875rem);
  -webkit-backdrop-filter: blur(0.875rem);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 -0.25rem 1.5rem rgba(0, 0, 0, 0.35);
  animation: cookieBarSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-theme="light"] .cookie-bar-wrapper {
  background: rgba(255, 255, 255, 0.96);
  border-top-color: var(--divider-color, #e2e8f0);
  color: var(--text-primary, #0f172a);
  box-shadow: 0 -0.25rem 1.5rem rgba(15, 23, 42, 0.08);
}

@keyframes cookieBarSlideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.cookie-bar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.cookie-bar-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-bar-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.cookie-bar-icon {
  font-size: 1.125rem;
  color: var(--accent-color, #C8102E);
  flex-shrink: 0;
}

.cookie-bar-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .cookie-bar-text {
  color: #475569;
}

.cookie-bar-headline {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.375rem;
}

[data-theme="light"] .cookie-bar-headline {
  color: #0f172a;
}

.cookie-bar-link {
  color: var(--accent-color, #C8102E);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-size: 0.78125rem;
  white-space: nowrap;
}

.cookie-bar-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-bar-btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 1rem;
  background: var(--accent-color, #C8102E);
  color: #ffffff;
  border: none;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cookie-bar-btn-prim:hover {
  background: #b00d27;
  transform: translateY(-0.0625rem);
}

.cookie-bar-btn-sec,
.cookie-bar-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.78125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="light"] .cookie-bar-btn-sec,
[data-theme="light"] .cookie-bar-btn-ghost {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

.cookie-bar-btn-sec:hover,
.cookie-bar-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

[data-theme="light"] .cookie-bar-btn-sec:hover,
[data-theme="light"] .cookie-bar-btn-ghost:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.cookie-bar-close {
  background: transparent;
  border: none;
  color: var(--text-muted, #94a3b8);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.375rem;
  line-height: 1;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.cookie-bar-close:hover {
  color: var(--text-primary);
  background: rgba(148, 163, 184, 0.15);
}

/* Expandable Drawer inside Bar */
.cookie-bar-drawer {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.0625rem dashed rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .cookie-bar-drawer {
  border-top-color: #cbd5e1;
}

.cookie-bar-drawer.is-expanded {
  display: block;
}

.cookie-bar-drawer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
}

.cookie-bar-pref-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
}

[data-theme="light"] .cookie-bar-pref-box {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.cookie-bar-pref-meta strong {
  display: block;
  font-size: 0.78125rem;
}

.cookie-bar-pref-meta p {
  font-size: 0.71875rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .cookie-bar-pref-meta p {
  color: #64748b;
}

.cookie-bar-status-locked {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.12);
  padding: 0.1875rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

@media (max-width: 48rem) {
  .cookie-bar-wrapper {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .cookie-bar-container {
    padding: 0.625rem 0.875rem !important;
    box-sizing: border-box !important;
  }

  .cookie-bar-main-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.625rem !important;
  }

  .cookie-bar-info {
    align-items: flex-start !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
  }

  .cookie-bar-text {
    font-size: 0.75rem !important;
    word-break: break-word !important;
  }

  .cookie-bar-controls {
    width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 0.375rem !important;
  }

  .cookie-bar-btn-prim,
  .cookie-bar-btn-sec,
  .cookie-bar-btn-ghost {
    padding: 0.375rem 0.625rem !important;
    font-size: 0.75rem !important;
    flex: 1 1 auto !important;
    justify-content: center !important;
  }

  .cookie-bar-drawer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   2026 Nesil Responsive Reklam Mimarisi (Masaüstü, Mobil, Kule & AdSense)
   ========================================================================== */

/* 1. Cihaz Görünürlük Kural Sınıfları */
.desktop-only-ad {
  display: block;
}

.mobile-only-ad {
  display: none;
}

@media (max-width: 48rem) {
  .desktop-only-ad {
    display: none !important;
  }
  .mobile-only-ad {
    display: block !important;
  }
}

/* 2. Reklam Konteynerı ve Mikro Rozet */
.site-ad-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  box-sizing: border-box;
}

.ad-badge-label {
  position: absolute;
  top: 0.25rem;
  right: 0.375rem;
  z-index: 5;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  padding: 0.0625rem 0.3125rem;
  border-radius: 0.125rem;
  line-height: 1.2;
  pointer-events: none;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
}

.ad-banner-link,
.ad-banner-track-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  line-height: 0;
}

.ad-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 3. Google AdSense & Custom Script Kapsayıcısı */
.ad-script-wrapper {
  width: 100%;
  min-height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ad-script-wrapper ins.adsbygoogle {
  display: block !important;
  margin: 0 auto !important;
}

/* 4. Sayfa İçi Özel Reklam Bantları */
.header-attached-ad-row {
  width: 100%;
  margin-top: 0.5rem;
}

.header-attached-ad-row:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.finance-attached-ad-row {
  width: 100%;
  margin-top: 0.75rem;
}

.finance-attached-ad-row:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-finance-ad-row {
  width: 100%;
  margin: 1rem 0;
}

.mobile-finance-ad-row:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-stream-ad-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
  box-sizing: border-box;
}

.mobile-stream-ad-wrapper:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-square-ad {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-sharp);
}

.footer-attached-ad-row {
  width: 100%;
  margin-bottom: 1.5rem;
}

.footer-attached-ad-row:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.in-article-ad-row {
  width: 100%;
  margin: 1.5rem 0;
}

.in-article-ad-row.top-ad {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.in-article-ad-row:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 5. Haber Akışı & Mobil Reklam Kartı (Grid / Feed) */
.ad-feed-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  box-sizing: border-box;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ad-feed-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-sm);
}

.ad-feed-card .ad-banner-track-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.ad-feed-card .ad-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 6. Geniş Ekran Sol ve Sağ Kule Bannerlar (160x600 - 300x600 Esnek Genişlik) */
.site-skyscraper-wrapper {
  display: none;
  position: fixed;
  top: 6.25rem;
  z-index: 90;
  max-width: 18.75rem; /* 300px max */
  width: auto;
}

.site-skyscraper-left {
  left: max(0.5rem, calc(50vw - 40rem - 19.5rem));
}

.site-skyscraper-right {
  right: max(0.5rem, calc(50vw - 40rem - 19.5rem));
}

.site-skyscraper-inner {
  position: relative;
  width: auto;
  min-width: 7.5rem;   /* 120px min */
  max-width: 18.75rem; /* 300px max */
  min-height: 37.5rem; /* 600px min */
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skyscraper-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 0;
}

.skyscraper-img {
  width: auto;
  max-width: 18.75rem; /* 300px */
  max-height: 37.5rem; /* 600px */
  height: auto;
  object-fit: contain;
  display: block;
}

/* Sadece 90rem (1440px) ve üzeri geniş ekranlarda kule bannerları göster */
@media (min-width: 90rem) {
  .site-skyscraper-wrapper {
    display: block;
  }
}

/* ==========================================================================
   B10.media Minimalist Canlı İstatistik & Sosyal Medya Çubuğu
   Katı Kural: Sadece REM, Grid & Flex mimarisi, PX KESİNLİKLE YASAKTIR.
   ========================================================================== */
.stats-counter-section {
  width: 100%;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.stats-minimal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  gap: 0.875rem;
}

.stats-narrative-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stats-pulse-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation: statsPulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes statsPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 0.3125rem rgba(200, 16, 46, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.stats-narrative-text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.stat-highlight {
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-main);
  padding: 0 0.125rem;
}

/* ==========================================================================
   B10.MEDIA PRESTİJLİ İMZA VE SOSYAL MEDYA OTORİTE ALANI (BRAND SHOWCASE)
   ========================================================================== */
.brand-signature-section {
  margin: 2.25rem 0 1.25rem 0;
}

.brand-signature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg, 0.75rem);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem -0.25rem rgba(0, 0, 0, 0.04);
}

.brand-signature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3125rem;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color-hover, #9E0C24) 100%);
}

/* Sol Blok: Otorite & Canlı Nabız */
.signature-primary-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signature-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 6.25rem;
  background: rgba(200, 16, 46, 0.08);
  color: var(--accent-color);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.live-pulse-core {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-block;
  box-shadow: 0 0 0.5rem var(--accent-color);
}

.signature-brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 0.5rem 0;
  font-family: var(--font-heading, var(--font-main));
}

.signature-title-main {
  display: inline;
}

.signature-title-accent {
  color: var(--accent-color);
  display: inline;
}

.signature-brand-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
}

.signature-metrics-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.125rem;
  background: var(--bg-surface-hover);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md, 0.5rem);
}

.sig-metric-item {
  display: flex;
  flex-direction: column;
}

.sig-metric-num {
  font-size: 1.1875rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  font-family: var(--font-heading, var(--font-main));
}

#stat-toplam-sosyal {
  color: var(--accent-color);
}

.sig-metric-lbl {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.1875rem;
}

.sig-metric-divider {
  width: 0.0625rem;
  height: 1.875rem;
  background: var(--divider-color);
}

/* Sağ Blok: 5'li Sosyal Medya Hub Izgarası */
.signature-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  align-content: center;
}

.social-hub-card {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  padding: 0.625rem 0.8125rem;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md, 0.5rem);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.social-hub-card.hub-youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, var(--bg-surface) 100%);
  border-color: rgba(255, 0, 0, 0.2);
}

.social-hub-card:hover {
  transform: translateY(-0.125rem);
  background: var(--bg-surface-hover);
}

.social-hub-card.hub-youtube:hover {
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0.375rem 1rem -0.125rem rgba(255, 0, 0, 0.15);
}

.social-hub-card.hub-instagram:hover {
  border-color: rgba(225, 48, 108, 0.45);
  box-shadow: 0 0.375rem 1rem -0.125rem rgba(225, 48, 108, 0.15);
}

.social-hub-card.hub-facebook:hover {
  border-color: rgba(24, 119, 242, 0.45);
  box-shadow: 0 0.375rem 1rem -0.125rem rgba(24, 119, 242, 0.15);
}

.social-hub-card.hub-tiktok:hover {
  border-color: #00F2FE;
  box-shadow: 0 0.375rem 1rem -0.125rem rgba(0, 242, 254, 0.2);
}

.social-hub-card.hub-twitter:hover,
.social-hub-card.hub-threads:hover {
  border-color: var(--text-primary);
  box-shadow: 0 0.375rem 1rem -0.125rem rgba(0, 0, 0, 0.08);
}

.hub-card-icon-wrap {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  flex-shrink: 0;
}

.hub-youtube .hub-card-icon-wrap {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}

.hub-instagram .hub-card-icon-wrap {
  background: rgba(225, 48, 108, 0.1);
  color: #E1306C;
}

.hub-twitter .hub-card-icon-wrap {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.hub-threads .hub-card-icon-wrap {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.hub-facebook .hub-card-icon-wrap {
  background: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.hub-tiktok .hub-card-icon-wrap {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

.hub-card-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.hub-card-platform {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hub-card-handle {
  font-size: 0.6875rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hub-card-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.hub-card-count {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}

.hub-card-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.hub-card-action {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-left: 0.3125rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-hub-card:hover .hub-card-action {
  color: var(--accent-color);
  transform: translate(0.0625rem, -0.0625rem);
}

/* Karanlık Mod İnce Ayarları */
:root[data-theme="dark"] .brand-signature-card {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .signature-metrics-strip {
  background: #1F2937;
  border-color: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .social-hub-card {
  background: #1F2937;
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .social-hub-card.hub-youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, #1F2937 100%);
  border-color: rgba(255, 0, 0, 0.3);
}

/* Mobil ve Tablet Uyumu - Kompakt & Lüks Dashboard Deneyimi */
@media (max-width: 62rem) {
  .brand-signature-card {
    grid-template-columns: 1fr;
    gap: 1.375rem;
    padding: 1.25rem;
  }
}

@media (max-width: 48rem) {
  .brand-signature-section {
    margin: 1.5rem 0 1rem 0;
  }

  .brand-signature-card {
    padding: 1.125rem;
    gap: 1.125rem;
    border-radius: var(--radius-lg, 0.75rem);
  }

  .signature-live-badge {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    padding: 0.1875rem 0.5625rem;
  }

  .signature-brand-title {
    font-size: 1.0625rem;
    line-height: 1.35;
    margin-bottom: 0.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .signature-title-main {
    display: block;
  }

  .signature-title-accent {
    display: block;
  }

  .signature-brand-subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.875rem;
  }

  .signature-metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
    padding: 0.625rem 0.5rem;
    align-items: center;
  }

  .sig-metric-item {
    align-items: center;
    text-align: center;
  }

  .sig-metric-item:not(:last-child) {
    border-right: 0.0625rem solid var(--divider-color);
  }

  .sig-metric-divider {
    display: none;
  }

  .sig-metric-num {
    font-size: 1.0625rem;
    line-height: 1.1;
  }

  .sig-metric-lbl {
    font-size: 0.5625rem;
    line-height: 1.2;
    text-align: center;
    margin-top: 0.1875rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  /* Mobilde 6 Platformu 2 Sütunlu Kompakt & Şık Kartlara Dönüştür */
  .signature-social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .social-hub-card {
    padding: 0.5rem 0.625rem;
    gap: 0.5rem;
    border-radius: 0.5rem;
    min-height: 3.125rem;
  }

  .hub-card-icon-wrap {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.9375rem;
    border-radius: 0.375rem;
  }

  .hub-card-platform {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.15;
  }

  .hub-card-handle {
    font-size: 0.5625rem;
    margin-top: 0.0625rem;
  }

  .hub-card-stat {
    margin-left: auto;
  }

  .hub-card-count {
    font-size: 0.8125rem;
    font-weight: 800;
  }

  .hub-card-label {
    font-size: 0.5rem;
  }

  .hub-card-action {
    display: none;
  }
}

@media (max-width: 23.5rem) {
  .signature-social-grid {
    gap: 0.375rem;
  }

  .social-hub-card {
    padding: 0.4375rem 0.4375rem;
    gap: 0.375rem;
  }

  .hub-card-icon-wrap {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 0.8125rem;
  }

  .hub-card-platform {
    font-size: 0.6875rem;
  }

  .hub-card-count {
    font-size: 0.75rem;
  }
}

/* AI Media Badge (Temsili Görsel) */
.ai-media-badge {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  background: rgba(15, 23, 42, 0.75);
  color: #F8FAFC;
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-sm, 0.25rem);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
}

.ai-media-badge i {
  color: #F59E0B;
  font-size: 0.625rem;
}

.detail-hero-frame {
  position: relative;
  background: #0A0F1D;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-wrap {
  position: relative;
  background: #0A0F1D;
  overflow: hidden;
}

/* Akıllı Video Çerçevesi - Sıfır Pikselleşme, Kusursuz Ortalama & Kristal Netlik */
.hero-bg-media-wrap {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0A0F1D !important;
  overflow: hidden !important;
  text-align: center !important;
}

.hero-slide-video {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  transform: none !important;
}

.detail-hero-video {
  max-width: 100%;
  max-height: 38rem;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #0A0F1D;
  display: block;
  margin: 0 auto;
}

.card-video-media {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #0A0F1D;
  margin: auto;
  display: block;
}

/* ==========================================================================
   MOBİLDE TÜM MEDYA ALANLARI İÇİN 4:5 INSTAGRAM STANDARDI & SIFIR CLS
   ========================================================================== */
@media (max-width: 62rem) {
  /* 1. Manşet Slayt Alanı: 1:1 Kare Haber Görseli (En Üstten Başlar) */
  .hero-visual-stage,
  .hero-visual-stage .hero-slides-inner,
  .hero-slides-inner {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1 !important;
    background: #0A0F1D !important;
  }

  .hero-visual-stage:has(video),
  .hero-visual-stage .hero-slides-inner:has(video),
  .hero-slides-inner:has(video) {
    aspect-ratio: 1 / 1 !important;
  }

  .hero-bg-slider-layer,
  .hero-bg-slide,
  .hero-bg-media-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #0A0F1D !important;
  }

  .hero-bg-slider-layer:has(video),
  .hero-bg-slide:has(video),
  .hero-bg-media-wrap:has(video) {
    aspect-ratio: 1 / 1 !important;
  }

  .hero-slide-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .hero-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  /* 2. Haber Detay Sayfası: Fotoğraflar için 3:2 Altın Oran, Videolar için Akıllı 4:5 */
  .detail-hero-frame {
    width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    max-height: none !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    position: relative !important;
    background: #0A0F1D !important;
  }

  .detail-hero-frame:has(video),
  .detail-hero-frame:has(.detail-hero-video),
  .detail-hero-frame:has(iframe) {
    aspect-ratio: 4 / 5 !important;
  }

  .detail-hero-img,
  .detail-hero-video,
  .detail-hero-frame video,
  video.detail-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  /* 3. Haber Kartları, Kategori, Arama & Akış: Fotoğraflar 3:2, Videolar Akıllı 4:5 */
  .card-image-wrap {
    width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0A0F1D !important;
  }

  .card-image-wrap:has(video),
  .card-image-wrap:has(.card-video-media),
  .has-video .card-image-wrap {
    aspect-ratio: 4 / 5 !important;
  }

  .card-image,
  .card-video-media,
  .card-image-wrap video,
  video.card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  /* 4. Çoklu Medya Foto Galeri Slider: Fotoğraflar 3:2, Video İçerenler 4:5 */
  .insta-media-carousel,
  .detail-hero-frame.insta-media-carousel,
  .card-image-wrap.insta-media-carousel {
    width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0A0F1D !important;
  }

  .insta-media-carousel:has(video),
  .detail-hero-frame.insta-media-carousel:has(video),
  .card-image-wrap.insta-media-carousel:has(video) {
    aspect-ratio: 4 / 5 !important;
  }

  .insta-carousel-track {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 3 / 2 !important;
    display: flex !important;
  }

  .insta-carousel-track:has(video) {
    aspect-ratio: 4 / 5 !important;
  }

  .insta-carousel-item {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    aspect-ratio: 3 / 2 !important;
    flex: 0 0 100% !important;
  }

  .insta-carousel-item:has(video) {
    aspect-ratio: 4 / 5 !important;
  }

  .insta-carousel-item img,
  .insta-carousel-item video,
  .insta-carousel-item img.card-image,
  .insta-carousel-item video.card-image,
  .insta-carousel-item img.detail-hero-img,
  .insta-carousel-item video.detail-hero-img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 3 / 2 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .insta-carousel-item video,
  .insta-carousel-item video.card-image,
  .insta-carousel-item video.detail-hero-img {
    aspect-ratio: 4 / 5 !important;
  }
}

/* Detay Sayfası Özel Video Kontrol Rozeti */
.detail-video-controls {
  position: absolute !important;
  top: 0.875rem !important;
  right: 0.875rem !important;
  z-index: 10 !important;
}

/* ==========================================================================
   B10.MEDIA WEB PUSH BİLDİRİM TERCİH MERKEZİ & ZİL STİLLERİ
   ========================================================================== */

.notification-bell-btn {
  position: relative;
}

.notification-bell-btn.is-active::after {
  content: '';
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 0.125rem solid var(--bg-surface);
  box-shadow: 0 0 0.375rem var(--accent-color);
}

/* Notification Modal Backdrop */
.notif-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(0.375rem);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notif-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Notification Modal Card (Solid Background, Zero Ghost Box Artifacts) */
.notif-modal-card {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border: 0.0625rem solid #E2E8F0 !important;
  border-radius: var(--radius-lg, 0.875rem);
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.28) !important;
  overflow: hidden;
  transform: translateY(1.25rem) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .notif-modal-card {
  background: #111827 !important;
  color: #F8FAFC !important;
  border-color: #334155 !important;
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.6) !important;
}

.notif-modal-backdrop.is-open .notif-modal-card {
  transform: translateY(0) scale(1);
}

/* Modal Header */
.notif-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.0625rem solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #FFFFFF;
}

body.dark-theme .notif-modal-header {
  border-color: #334155;
  background: #111827;
}

.notif-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.notif-modal-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notif-modal-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

body.dark-theme .notif-modal-title {
  color: #F8FAFC;
}

.notif-modal-desc {
  font-size: 0.75rem;
  color: #64748B;
  margin: 0.125rem 0 0 0;
}

body.dark-theme .notif-modal-desc {
  color: #94A3B8;
}

.notif-status-badge {
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.notif-status-badge.active {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 0.0625rem solid rgba(16, 185, 129, 0.3);
}

.notif-status-badge.inactive {
  background: rgba(100, 116, 139, 0.12);
  color: #64748B;
  border: 0.0625rem solid rgba(100, 116, 139, 0.3);
}

.notif-modal-close-btn {
  background: transparent;
  border: none;
  color: #64748B;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-modal-close-btn:hover {
  color: #0F172A;
  background: #F1F5F9;
}

body.dark-theme .notif-modal-close-btn:hover {
  color: #F8FAFC;
  background: #1E293B;
}

/* Modal Body */
.notif-modal-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: #FFFFFF;
}

body.dark-theme .notif-modal-body {
  background: #111827;
}

.notif-card-row {
  background: #F8FAFC;
  border: 0.0625rem solid #E2E8F0;
  border-radius: var(--radius-md, 0.5rem);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.dark-theme .notif-card-row {
  background: #1E293B;
  border-color: #334155;
}

.notif-card-row.primary {
  background: #FEF2F2;
  border-color: rgba(200, 16, 46, 0.25);
}

body.dark-theme .notif-card-row.primary {
  background: rgba(200, 16, 46, 0.15);
  border-color: rgba(200, 16, 46, 0.35);
}

.notif-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.notif-row-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.dark-theme .notif-row-title {
  color: #F8FAFC;
}

.notif-row-sub {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.4;
}

body.dark-theme .notif-row-sub {
  color: #94A3B8;
}

.notif-section-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  display: block;
  margin-top: 0.25rem;
}

/* Switch Toggle (iOS Style) */
.notif-switch {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.notif-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.notif-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E1;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1.5rem;
}

body.dark-theme .notif-slider {
  background-color: #475569;
}

.notif-slider:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.1875rem;
  bottom: 0.1875rem;
  background-color: #FFFFFF;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.notif-switch input:checked + .notif-slider {
  background-color: var(--accent-color);
}

.notif-switch input:checked + .notif-slider:before {
  transform: translateX(1.25rem);
}

/* Categories Grid */
.notif-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

@media (max-width: 36rem) {
  .notif-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.notif-cat-pill {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  background: #F8FAFC;
  border: 0.0625rem solid #CBD5E1;
  padding: 0.4375rem 0.625rem;
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

body.dark-theme .notif-cat-pill {
  background: #1E293B;
  border-color: #475569;
  color: #E2E8F0;
}

.notif-cat-pill:has(input:checked) {
  background: #FEF2F2;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

body.dark-theme .notif-cat-pill:has(input:checked) {
  background: rgba(200, 16, 46, 0.2);
  border-color: var(--accent-color);
  color: #FFFFFF;
}

.notif-cat-pill input {
  accent-color: var(--accent-color);
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
}

/* Modal Footer */
.notif-modal-footer {
  padding: 1.125rem 1.5rem;
  border-top: 0.0625rem solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  background: #F8FAFC;
}

body.dark-theme .notif-modal-footer {
  border-color: #334155;
  background: #111827;
}

.btn-notif-secondary {
  padding: 0.5625rem 1.125rem;
  background: #FFFFFF;
  color: #475569;
  border: 0.0625rem solid #CBD5E1;
  border-radius: var(--radius-md, 0.375rem);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.dark-theme .btn-notif-secondary {
  background: #1E293B;
  color: #E2E8F0;
  border-color: #475569;
}

.btn-notif-secondary:hover {
  background: #F1F5F9;
  color: #0F172A;
}

body.dark-theme .btn-notif-secondary:hover {
  background: #334155;
  color: #FFFFFF;
}

.btn-notif-primary {
  padding: 0.5625rem 1.375rem;
  background: var(--accent-color);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md, 0.375rem);
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  transition: all 0.2s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(200, 16, 46, 0.3);
}

.btn-notif-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.375rem 1rem rgba(200, 16, 46, 0.4);
}

/* Floating Notification Toast */
.notif-floating-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: #0F172A;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notif-floating-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Minimal Non-Intrusive Soft Notification Prompt */
.notif-soft-prompt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 22rem;
  width: calc(100% - 3rem);
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, rgba(226, 232, 240, 0.8));
  border-radius: var(--radius-lg, 0.875rem);
  padding: 0.875rem 1rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9998;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.notif-soft-prompt.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.notif-soft-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.1);
  color: var(--accent-color, #c8102e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.notif-soft-body {
  flex: 1;
  min-width: 0;
}

.notif-soft-title {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  line-height: 1.25;
}

.notif-soft-desc {
  font-size: 0.6875rem;
  color: var(--text-muted, #64748b);
  line-height: 1.35;
  margin-top: 0.125rem;
}

.notif-soft-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.notif-soft-btn-allow {
  padding: 0.375rem 0.75rem;
  background: var(--accent-color, #c8102e);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notif-soft-btn-allow:hover {
  background: var(--accent-hover, #a00d24);
  transform: translateY(-0.0625rem);
}

.notif-soft-btn-later {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--bg-hover, #f1f5f9);
  color: var(--text-muted, #64748b);
  border: none;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notif-soft-btn-later:hover {
  background: var(--border-color, #e2e8f0);
  color: var(--text-primary, #0f172a);
}

@media (max-width: 48rem) {
  .notif-soft-prompt {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    max-width: none;
  }
}

/* Google Preferred News Source Bar */
.google-source-pref-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5625rem 0.875rem;
  background: var(--bg-surface, #ffffff);
  border: 0.0625rem solid var(--divider-color, rgba(226, 232, 240, 0.8));
  border-radius: var(--radius-sm, 0.25rem);
  text-decoration: none;
  color: var(--text-secondary, #475569);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.875rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.google-source-pref-bar:hover {
  background: var(--bg-surface-hover, #f8fafc);
  border-color: #4285F4;
  color: var(--text-primary, #0f172a);
  box-shadow: var(--shadow-sm);
  transform: translateY(-0.0625rem);
}

.google-source-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-source-icon svg {
  width: 100%;
  height: 100%;
}

.google-source-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.google-source-text strong {
  color: var(--text-primary, #0f172a);
  font-weight: 700;
}

.google-text-desktop {
  display: inline;
}

.google-text-mobile {
  display: none;
}

.google-source-arrow {
  font-size: 0.6875rem;
  color: var(--text-muted, #94a3b8);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.google-source-pref-bar:hover .google-source-arrow {
  color: #4285F4;
  transform: translateX(0.125rem);
}

@media (max-width: 48rem) {
  .google-source-pref-bar {
    padding: 0.4375rem 0.6875rem;
    font-size: 0.75rem;
    gap: 0.5rem;
    margin-top: 0.625rem;
    margin-bottom: 0.5rem;
  }

  .google-source-icon {
    width: 1rem;
    height: 1rem;
  }

  .google-source-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

  .google-text-desktop {
    display: none;
  }

  .google-text-mobile {
    display: inline;
  }
}


