/* ============================================================
   QruzeTV — Clean, Minimal, High-End Dark Portal Styles
   Focused on authentic branding, sharp typography, and zero clutter.
   ============================================================ */

:root {
  --q-bg: #07090e;
  --q-surface: #0e121a;
  --q-surface-card: rgba(14, 18, 28, 0.72);
  --q-border: rgba(255, 255, 255, 0.08);
  --q-border-subtle: rgba(255, 255, 255, 0.05);
  --q-border-hover: rgba(239, 35, 60, 0.35);
  --q-red: #e50914;
  --q-red-dark: #b20710;
  --q-red-glow: rgba(229, 9, 20, 0.28);
  --q-telegram: #229ED9;
  --q-telegram-dark: #1a7fb1;
  --q-telegram-glow: rgba(34, 158, 217, 0.35);
  --q-yellow: #ffc93c;
  --q-text-bright: #ffffff;
  --q-text: #e2e8f0;
  --q-text-muted: #8e9bb0;
}

body {
  background-color: var(--q-bg) !important;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(229, 9, 20, 0.12), transparent 70%),
    linear-gradient(180deg, #07090e 0%, #0a0d14 60%, #06080b 100%) !important;
  color: var(--q-text) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* ═══ TOP ANNOUNCEMENT STRIP (Ultra-Luxurious & Refined) ═══ */
.q-announcement {
  background: linear-gradient(180deg, rgba(14, 19, 30, 0.95) 0%, rgba(8, 12, 20, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  color: #f1f5f9;
  padding: 9px 20px;
  font-size: 0.86rem;
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Luminous animated ambient light beam */
.q-announcement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(239, 35, 60, 0.7) 20%, 
    rgba(56, 189, 248, 0.9) 50%, 
    rgba(239, 35, 60, 0.7) 80%, 
    transparent 100%
  );
  opacity: 0.95;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.q-announcement::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 900px at 50% -120px, rgba(56, 189, 248, 0.08), transparent 75%);
  pointer-events: none;
}

.q-announcement.is-hidden {
  display: none !important;
}

.q-announcement__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.q-announcement__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.q-ann-beacon {
  display: inline-flex;
  position: relative;
  width: 8px;
  height: 8px;
  margin-right: 2px;
  flex-shrink: 0;
}

.q-ann-beacon__ping {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: #ef233c;
  opacity: 0.8;
  animation: q-beacon-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.q-ann-beacon__core {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef233c;
  box-shadow: 0 0 10px #ef233c;
}

@keyframes q-beacon-ping {
  75%, 100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.q-announcement__badge {
  background: linear-gradient(135deg, rgba(239, 35, 60, 0.22) 0%, rgba(220, 38, 38, 0.10) 100%);
  color: #ff5263;
  border: 1px solid rgba(239, 35, 60, 0.42);
  box-shadow: 0 2px 10px rgba(239, 35, 60, 0.18);
  font-size: 0.69rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.q-announcement__text {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.q-announcement__text strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.q-ann-actions-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.q-announcement__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 2px 12px rgba(2, 132, 199, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.79rem;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.q-announcement__action:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.55);
  transform: translateY(-1px) scale(1.02);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.q-announcement__action svg {
  transition: transform 0.2s ease;
}

.q-announcement__action:hover svg {
  transform: scale(1.15);
}

.q-ann-dismiss {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #94a3b8;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.q-ann-dismiss:hover {
  color: #fff;
  background: rgba(239, 35, 60, 0.25);
  border-color: rgba(239, 35, 60, 0.45);
  transform: rotate(90deg);
}

@media (max-width: 860px) {
  .q-announcement {
    padding: 10px 14px;
  }
  .q-announcement__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .q-announcement__content {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .q-announcement__text {
    white-space: normal;
    font-size: 0.82rem;
    width: 100%;
    display: block;
  }
  .q-ann-actions-group {
    width: 100%;
    justify-content: space-between;
  }
  .q-announcement__action {
    padding: 5px 12px;
    font-size: 0.78rem;
  }
  .q-announcement__action span {
    display: inline !important;
  }
}

/* ═══ TOPBAR (Full-Width Sticky Glass Header) ═══ */
.topbar {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 70px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(7, 9, 14, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45) !important;
  z-index: 1000 !important;
}

.topbar__inner {
  width: 100% !important;
  max-width: 1280px !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.brand__logo-img {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(229, 9, 20, 0.35)) !important;
}

.brand__text {
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  white-space: nowrap !important;
}

.nav-desktop {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.nav-desktop a {
  font-weight: 600 !important;
  font-size: 0.90rem !important;
  color: #94a3b8 !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-desktop a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.nav-desktop a.active {
  color: #ffffff !important;
  background: rgba(229, 9, 20, 0.12) !important;
  border: 1px solid rgba(229, 9, 20, 0.25) !important;
}

.topbar__cta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.btn--telegram-nav {
  background: linear-gradient(135deg, #229ED9 0%, #1781b5 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
}

.btn--telegram-nav:hover {
  background: linear-gradient(135deg, #27abec 0%, #1990cc 100%) !important;
  box-shadow: 0 6px 22px rgba(34, 158, 217, 0.5) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #ffffff !important;
}

.btn--whatsapp-nav {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
}

.btn--whatsapp-nav:hover {
  background: linear-gradient(135deg, #2ae06d 0%, #159c8c 100%) !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #ffffff !important;
}

/* ═══ HAMBURGER BUTTON (High Contrast Glass) ═══ */
.nav-toggle {
  display: none !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.nav-toggle:hover, .nav-toggle:active {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
  color: #ff4d5a !important;
  transform: scale(1.04) !important;
}

.nav-toggle svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  display: block !important;
}

/* ═══ MOBILE DRAWER (Luxury Dark Off-Canvas) ═══ */
.mobile-drawer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2000 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: visibility 0.3s ease !important;
}

.mobile-drawer.open {
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-drawer__backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(3, 4, 8, 0.82) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.mobile-drawer.open .mobile-drawer__backdrop {
  opacity: 1 !important;
}

.mobile-drawer__panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(320px, 86vw) !important;
  background: linear-gradient(180deg, #0e121c 0%, #07090e 100%) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
  padding: 20px 20px 30px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.7) !important;
  overflow-y: auto !important;
}

.mobile-drawer.open .mobile-drawer__panel {
  transform: translateX(0) !important;
}

.mobile-drawer__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.mobile-drawer__close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #94a3b8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.mobile-drawer__close:hover {
  background: rgba(239, 35, 60, 0.2) !important;
  border-color: rgba(239, 35, 60, 0.4) !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

.mobile-drawer__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  flex: 1 !important;
}

.mobile-drawer__panel a {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: all 0.2s ease !important;
}

.mobile-drawer__panel a:hover,
.mobile-drawer__panel a.active {
  color: #ffffff !important;
  background: rgba(229, 9, 20, 0.12) !important;
  border-color: rgba(229, 9, 20, 0.28) !important;
  transform: translateX(3px) !important;
}

.mobile-drawer__panel a.drawer-highlight {
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.08) !important;
  border-color: rgba(56, 189, 248, 0.25) !important;
  font-weight: 700 !important;
}

.mobile-drawer__footer {
  margin-top: 20px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.mobile-drawer__status {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.78rem !important;
  color: #94a3b8 !important;
  padding: 0 4px !important;
}

.mobile-drawer__status .q-status-dot {
  width: 8px !important;
  height: 8px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  box-shadow: 0 0 10px #22c55e !important;
  display: inline-block !important;
}

/* ═══ RESPONSIVE BREAKPOINTS ═══ */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none !important;
  }
  .nav-toggle {
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .topbar {
    height: 60px !important;
  }
  .topbar__inner {
    padding: 0 16px !important;
  }
  .brand__logo-img {
    height: 34px !important;
  }
  .brand__text {
    font-size: 1.15rem !important;
  }
  .btn--telegram-nav {
    padding: 7px 12px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 480px) {
  .topbar__cta {
    gap: 8px !important;
  }
  .btn--telegram-nav {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 10px !important;
  }
  .btn--telegram-nav span {
    display: none !important;
  }
  .btn--telegram-nav svg {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
  }
  .brand__logo-img {
    height: 30px !important;
  }
  .brand__text {
    font-size: 1.05rem !important;
  }
  .nav-toggle {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ═══ PREMIUM CINEMATIC HERO ═══ */
.premium-hero-cinematic {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 44px 0 24px;
  background-color: #0a0a0a !important;
}

@keyframes premium-hero-aurora-shift {
  0%, 100% { transform: translate3d(-2%, -1%, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(3%, 2%, 0) scale(1.08); opacity: 1; }
}

@keyframes premium-hero-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(26px, -18px, 0) scale(1.12); }
}

.premium-hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 52% at 82% 18%, rgba(229, 9, 20, 0.22), transparent 70%),
    radial-gradient(ellipse 44% 42% at 35% 78%, rgba(178, 7, 16, 0.20), transparent 72%),
    linear-gradient(116deg, transparent 32%, rgba(255, 255, 255, 0.035) 48%, transparent 62%);
  animation: premium-hero-aurora-shift 14s ease-in-out infinite;
  will-change: transform, opacity;
  z-index: 1;
}

.premium-hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(50px);
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.premium-hero-orb-one {
  right: -4rem;
  top: 15%;
  height: 18rem;
  width: 18rem;
  background: rgba(229, 9, 20, 0.45);
  opacity: 0.35;
  animation: premium-hero-orbit 11s ease-in-out infinite;
}

.premium-hero-orb-two {
  bottom: 8%;
  left: 20%;
  height: 14rem;
  width: 14rem;
  background: rgba(178, 7, 16, 0.4);
  opacity: 0.3;
  animation: premium-hero-orbit 13s ease-in-out infinite;
  animation-delay: -5s;
}

.premium-hero-flare {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  height: min(58vh, 560px);
  width: min(92vw, 680px);
  background: radial-gradient(ellipse 80% 70% at 0% 100%, rgba(229, 9, 20, 0.38) 0%, rgba(229, 9, 20, 0.12) 38%, transparent 68%);
}

.premium-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.premium-hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to top, #0a0a0a, transparent);
  pointer-events: none;
  z-index: 5;
}

/* Hero Stage Layout */
.hero-stage-container {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px 0;
  width: 100%;
}

.hero-layout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hero-left-content {
  flex: 1 1 54%;
  max-width: 630px;
  text-align: left;
}

.hero-right-mosaic {
  flex: 0 0 44%;
  max-width: 480px;
  height: 590px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

/* Streaming Pill */
.hero-stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.hero-stream-pill .pulse-dot-wrap {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.hero-stream-pill .pulse-ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #e50914;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-stream-pill .pulse-core {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #e50914;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.95);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Brand Logo in Hero */
.hero-brand-block {
  margin-bottom: 14px;
}

.hero-brand-logo-img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(229, 9, 20, 0.45));
}

.hero-caption-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(229, 9, 20, 0.95);
  margin-bottom: 12px;
}

/* Headline */
.hero-main-h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-main-h1 .h1-gradient-sub {
  display: block;
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
  margin-top: 8px;
  font-weight: 900;
  background: linear-gradient(to right, #ff2430, #e50914, #b20710);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cinema-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.hero-cinema-desc strong {
  color: #ffffff;
}

.hero-cinema-desc .accent-red {
  color: #e50914;
  font-weight: 600;
}

/* WhatsApp Notice Callout in Hero */
.hero-wa-callout {
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.28);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-wa-callout svg {
  flex-shrink: 0;
  color: #ff4d5a;
  margin-top: 2px;
}

.hero-wa-callout a {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: underline;
}

/* Hero CTA Row */
.hero-buttons-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn-hero-telegram {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 35px rgba(2, 132, 199, 0.45), 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-hero-telegram:hover {
  transform: scale(1.025);
  box-shadow: 0 0 45px rgba(2, 132, 199, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff !important;
}

.btn-hero-telegram .sweep-shine {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.btn-hero-telegram:hover .sweep-shine {
  transform: translateX(100%);
}

.btn-hero-packages {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 35px rgba(229, 9, 20, 0.45);
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-hero-packages:hover {
  transform: scale(1.025);
  box-shadow: 0 0 50px rgba(229, 9, 20, 0.6);
  color: #fff !important;
}

.btn-hero-packages .sweep-shine {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.btn-hero-packages:hover .sweep-shine {
  transform: translateX(100%);
}

/* Trust Badges */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #94a3b8;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #cbd5e1;
}

.hero-trust-item svg {
  color: #e50914;
}

.hero-trust-sep {
  color: #475569;
}

/* ═══ QRUZE PLAYER INTERACTIVE UI STAGE (100% Legal, Zero Copyright) ═══ */
.hero-right-mosaic {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-player-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, rgba(14, 18, 28, 0.92) 0%, rgba(9, 12, 19, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(229, 9, 20, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.stage-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--q-red);
  box-shadow: 0 0 10px var(--q-red);
}

.stage-brand-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.stage-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.04em;
}

.stage-status-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: q-ping-dot 1.5s infinite;
}

/* 2x2 Category Grid */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stage-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.stage-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 9, 20, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stage-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.stage-icon-tv { background: rgba(229, 9, 20, 0.18); color: #ff4d5a; }
.stage-icon-movie { background: rgba(245, 158, 11, 0.18); color: #fbbf24; }
.stage-icon-series { background: rgba(56, 189, 248, 0.18); color: #38bdf8; }
.stage-icon-sports { background: rgba(16, 185, 129, 0.18); color: #34d399; }

.stage-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.stage-card-meta {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Now Streaming Preview Bar */
.stage-stream-bar {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stage-stream-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stage-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  width: 22px;
}

.stage-eq-bar {
  width: 3px;
  background: #e50914;
  border-radius: 2px;
  animation: stage-eq-anim 1.2s ease-in-out infinite;
}

.stage-eq-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.stage-eq-bar:nth-child(2) { height: 90%; animation-delay: 0.2s; }
.stage-eq-bar:nth-child(3) { height: 60%; animation-delay: 0.4s; }
.stage-eq-bar:nth-child(4) { height: 100%; animation-delay: 0.1s; }

@keyframes stage-eq-anim {
  0%, 100% { height: 25%; }
  50% { height: 100%; }
}

.stage-stream-text .stage-stream-title,
.stage-stream-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
}

.stage-stream-text span {
  font-size: 0.7rem;
  color: #94a3b8;
}

.stage-stream-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Floating Badges on Stage */
.stage-float-badge-1 {
  position: absolute;
  top: -14px;
  left: 20px;
  z-index: 10;
  background: rgba(14, 18, 28, 0.94);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(16px);
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #34d399;
}

.stage-float-badge-2 {
  position: absolute;
  bottom: -14px;
  right: 20px;
  z-index: 10;
  background: rgba(14, 18, 28, 0.94);
  border: 1px solid rgba(34, 158, 217, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 158, 217, 0.15);
  backdrop-filter: blur(16px);
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #38bdf8;
}

/* 4 LUXURY FEATURE CARDS (Exact match to primewhac) */
.luxury-features-section {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 36px auto 0;
  padding: 0 24px;
  width: 100%;
}

.luxury-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.luxury-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.085), transparent 34%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(8, 8, 8, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 24px 22px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(229, 9, 20, 0.18);
}

.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 58%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.luxury-card:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.luxury-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.luxury-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.luxury-card:hover .luxury-card__icon {
  transform: scale(1.06);
}

.icon-grad-red { background: linear-gradient(135deg, #e50914, #b20710); }
.icon-grad-shield { background: linear-gradient(135deg, #e50914, #8b0000); }
.icon-grad-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-grad-green { background: linear-gradient(135deg, #e50914, #10b981); }

.luxury-card__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  padding: 3px 10px;
  border-radius: 999px;
}

.luxury-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e50914;
  border: 1px solid rgba(229, 9, 20, 0.28);
  background: rgba(229, 9, 20, 0.09);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.luxury-card__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.luxury-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1040px) {
  .luxury-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-layout-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-left-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-brand-logo-img {
    margin: 0 auto;
  }
  .hero-wa-callout {
    text-align: left;
  }
  .hero-buttons-row {
    justify-content: center;
  }
  .hero-trust-row {
    justify-content: center;
  }
  .hero-right-mosaic {
    width: 100%;
    max-width: 480px;
    height: 380px;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .luxury-features-grid {
    grid-template-columns: 1fr;
  }
  .hero-right-mosaic {
    height: 300px;
  }
  .hero-mosaic-container {
    gap: 8px;
  }
  .btn-hero-telegram, .btn-hero-packages {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ PACKAGES PORTAL BRIDGE CARD (Zero Generic AI Tables) ═══ */
.portal-packages-card {
  background: linear-gradient(180deg, #101520 0%, #0a0d14 100%);
  border: 1px solid var(--q-border);
  border-radius: 18px;
  padding: 44px 36px;
  max-width: 920px;
  margin: 60px auto 0;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}

.portal-packages-card h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.portal-packages-card p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.portal-features-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--q-border-subtle);
}

.portal-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.portal-feat-tag span {
  color: var(--q-red);
}

.portal-actions-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-buy-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--q-red) 0%, var(--q-red-dark) 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px var(--q-red-glow);
  transition: all 0.2s ease;
}

.btn-buy-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--q-red-glow);
  color: #fff;
}

/* ═══ CLEAN CONTACT MATRIX (Human, Authentic) ═══ */
.contact-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 40px auto 0;
}

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

.contact-tile {
  background: var(--q-surface);
  border: 1px solid var(--q-border);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-tile--active {
  border-color: rgba(34, 158, 217, 0.4);
  background: linear-gradient(180deg, rgba(34, 158, 217, 0.08) 0%, var(--q-surface) 100%);
}

.contact-tile__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-tg { background: rgba(34, 158, 217, 0.18); color: #38bdf8; }
.badge-wa { background: rgba(245, 158, 11, 0.18); color: #fbbf24; }
.badge-web { background: rgba(255, 255, 255, 0.08); color: #e2e8f0; }

.contact-tile h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-tile p {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 18px;
  line-height: 1.45;
}

.contact-tile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-tile-tg {
  background: var(--q-telegram);
  color: #fff;
}
.btn-tile-tg:hover {
  background: var(--q-telegram-dark);
}

.btn-tile-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  border: 1px solid var(--q-border);
}
.btn-tile-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-tile-wa {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}
.btn-tile-wa:hover {
  background: linear-gradient(135deg, #28e06c 0%, #1ea952 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* ═══ FLOATING CONTACT DOCK & BUTTONS (Telegram & WhatsApp) ═══ */
.floating-contact-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-telegram-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--q-telegram);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--q-telegram-glow);
  transition: all 0.2s ease;
}

.floating-telegram-btn:hover {
  background: var(--q-telegram-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--q-telegram-glow);
  color: #fff;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.floating-whatsapp-btn:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* ═══ MİNİ PENCERE (Canlı Destek ve Doğrudan Bağlantı Penceresi) ═══ */
.qruze-mini-window {
  position: fixed;
  bottom: 85px;
  right: 24px;
  z-index: 10000;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(160deg, rgba(14, 20, 32, 0.98) 0%, rgba(8, 11, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 35px rgba(34, 158, 217, 0.2);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.qruze-mini-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mini-win-header {
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.15) 0%, rgba(34, 158, 217, 0.15) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-win-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-win-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(34, 158, 217, 0.2);
  border: 1px solid rgba(34, 158, 217, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mini-win-status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0e1420;
  box-shadow: 0 0 8px #10b981;
  animation: q-ping-dot 1.8s infinite;
}

.mini-win-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.mini-win-sub {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-win-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.mini-win-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.mini-win-body {
  padding: 18px;
}

.mini-win-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 16px;
}

.mini-win-bubble strong {
  color: #ffffff;
}

.mini-win-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.mini-action-btn:hover {
  transform: translateY(-2px);
}

.mini-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-btn-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.mini-btn-label {
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  line-height: 1.25;
  margin-bottom: 2px;
}

.mini-btn-hint {
  font-size: 0.72rem;
  display: block;
  opacity: 0.85;
}

/* Telegram Button Style */
.mini-btn-tg {
  background: linear-gradient(135deg, #1e96d1 0%, #1579aa 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.35);
}
.mini-btn-tg:hover {
  box-shadow: 0 8px 25px rgba(34, 158, 217, 0.5);
}
.mini-btn-tg .mini-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* WhatsApp Button Style */
.mini-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.mini-btn-wa:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.mini-btn-wa .mini-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Secondary Packages / Site Button */
.mini-btn-sec {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1 !important;
}
.mini-btn-sec:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}
.mini-btn-sec .mini-btn-icon {
  background: rgba(229, 9, 20, 0.15);
  color: #ff4d5a;
}

.mini-win-footer {
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.7rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Floating Trigger Button (Bottom Right) */
.floating-chat-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0e1420 0%, #151d2d 100%);
  border: 1px solid rgba(34, 158, 217, 0.4);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 158, 217, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-chat-trigger:hover {
  transform: translateY(-2px);
  border-color: #38bdf8;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(34, 158, 217, 0.45);
}

.chat-trigger-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: q-ping-dot 1.6s infinite;
}

/* Screen reader only utility for SEO & accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 640px) {
  .qruze-mini-window {
    bottom: 75px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }
  .qruze-corner-toast {
    bottom: 80px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* ═══ LIVE CORNER TOAST NOTIFICATION (Enterprise Grade) ═══ */
.qruze-corner-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  max-width: 380px;
  width: calc(100vw - 48px);
  background: rgba(14, 18, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 24px rgba(34, 158, 217, 0.15);
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px) 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);
}

.qruze-corner-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.q-toast-icon-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(34, 158, 217, 0.15);
  border: 1px solid rgba(34, 158, 217, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.q-toast-status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #0e121a;
  box-shadow: 0 0 8px #22c55e;
  animation: q-ping-dot 2s infinite;
}

@keyframes q-ping-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.q-toast-body {
  flex: 1;
  min-width: 0;
}

.q-toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
  padding-right: 14px;
}

.q-toast-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.q-toast-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 1px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.q-toast-message {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0 0 12px;
}

.q-toast-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--q-telegram);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.q-toast-btn:hover {
  background: var(--q-telegram-dark);
  transform: translateY(-1px);
}

.q-toast-dismiss {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.q-toast-dismiss:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .qruze-corner-toast {
    bottom: 80px;
    left: 14px;
    right: 14px;
    max-width: none;
    width: auto;
  }
}

/* ═══ SEO POWERHOUSE FOOTER (QruzeTV Official Portal) ═══ */
.qruze-seo-footer {
  background: #07080b !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  position: relative;
  overflow: hidden;
  padding: 56px 0 24px !important;
}

.qruze-seo-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.45), rgba(56, 189, 248, 0.45), transparent);
}

/* Stats Ribbon */
.seo-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-stat-pill {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.seo-stat-pill:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-2px);
}

.seo-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.seo-stat-val {
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.seo-stat-lbl {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Main 4-Column Topic Cluster */
.seo-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.seo-footer-col h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.seo-col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(229, 9, 20, 0.12);
  color: #e50914;
}

.seo-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-link-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #94a3b8 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.seo-link-list li a::before {
  content: '›';
  font-size: 1rem;
  color: #475569;
  transition: transform 0.2s ease, color 0.2s ease;
}

.seo-link-list li a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.seo-link-list li a:hover::before {
  color: #e50914;
  transform: translateX(2px);
}

.seo-badge-tag-sm {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(229, 9, 20, 0.16);
  color: #ff4d5a;
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Brand Column (Col 4) */
.seo-brand-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.seo-brand-desc strong {
  color: #e2e8f0;
}

.seo-brand-desc a {
  color: #38bdf8;
  text-decoration: underline;
}

.seo-footer-btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #229ED9;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.3);
}

.seo-footer-btn-tg:hover {
  background: #1a7fb1;
  transform: translateY(-2px);
  color: #fff !important;
}

.seo-footer-btn-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.seo-footer-btn-site:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Geo Matrix & Keyword Authority Section */
.seo-geo-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.seo-geo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.seo-geo-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-geo-sub {
  font-size: 0.82rem;
  color: #8e9bb0;
}

.seo-geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-geo-block-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.seo-geo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.geo-tag {
  display: inline-block;
  font-size: 0.76rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px 9px;
  border-radius: 6px;
  line-height: 1.4;
  text-decoration: none;
}

.geo-tag:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* Keywords Cloud / Search Anchor Signals */
.seo-keywords-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #64748b;
}

.seo-keywords-block strong {
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kw-pill {
  color: #cbd5e1 !important;
  background: rgba(229, 9, 20, 0.06);
  border: 1px solid rgba(229, 9, 20, 0.15);
  padding: 3px 9px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  transition: all 0.2s;
}

.kw-pill:hover {
  background: rgba(229, 9, 20, 0.15);
  color: #fff !important;
  border-color: rgba(229, 9, 20, 0.35);
}

/* Bottom Bar */
.seo-footer-bottom {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #64748b;
}

.seo-footer-bottom a {
  color: #8e9bb0;
  text-decoration: none;
}

.seo-footer-bottom a:hover {
  color: #ffffff;
}

.seo-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1040px) {
  .seo-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-geo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .seo-stats-ribbon {
    grid-template-columns: 1fr;
  }
  .seo-footer-grid {
    grid-template-columns: 1fr;
  }
  .seo-footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
