:root {
  --bg: #ffffff;
  --bg-soft: rgba(255, 255, 255, 0.78);
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.2);
  --brand-start: #f97316;
  --brand-end: #facc15;
  --maroon: #641220;
  --navy: #181c31;
  --cream: #f6f2fb;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 18px 60px rgba(249, 115, 22, 0.18);
}

.dark {
  --bg: #020617;
  --bg-soft: rgba(15, 23, 42, 0.72);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.16);
  --shadow-soft: 0 22px 64px rgba(2, 6, 23, 0.55);
  --shadow-glow: 0 18px 50px rgba(250, 204, 21, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
    radial-gradient(circle at left center, rgba(250, 204, 21, 0.1), transparent 25%),
    var(--bg);
  color: var(--text);
}

.site-shell {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(100, 18, 32, 0.08), transparent 28%),
    linear-gradient(180deg, #fcf9ff 0%, #f7f2ff 100%);
}

.surface-card {
  background: var(--bg-soft);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.soft-glow {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.soft-glow:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(249, 115, 22, 0.28);
}

.brand-gradient {
  background-image: linear-gradient(135deg, var(--brand-start), var(--brand-end));
}

.brand-text {
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-pattern {
  background-image:
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(250, 204, 21, 0.02)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 24%);
}

.header-premium {
  background:
    radial-gradient(circle at top center, rgba(255, 180, 0, 0.25), transparent 22%),
    radial-gradient(circle at right center, rgba(249, 115, 22, 0.18), transparent 26%),
        linear-gradient(90deg, #f38e0a 0%, #ac410f 55%, #f38e0a 100%);

    /* linear-gradient(90deg, #f59e0b 0%, #8b1e2d 55%, #1f2237 100%); */
}

.subnav-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,244,255,0.9));
}

.page-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,240,255,0.95));
  border: 1px solid rgba(210, 206, 227, 0.85);
  box-shadow: 0 30px 80px rgba(55, 32, 90, 0.12);
}

.news-card-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,255,0.96));
  border: 1px solid rgba(221, 214, 235, 0.9);
  box-shadow: 0 18px 40px rgba(56, 32, 85, 0.08);
}

@media (min-width: 768px) {
  .page-panel {
    background:
      radial-gradient(circle at top right, rgba(255, 193, 94, 0.18), transparent 18%),
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,240,255,0.96));
    box-shadow: 0 36px 90px rgba(55, 32, 90, 0.16);
  }

  .news-card-soft {
    box-shadow: 0 20px 46px rgba(56, 32, 85, 0.1);
  }

  .subnav-strip {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,239,255,0.92));
  }
}

.orange-chip {
  background: linear-gradient(135deg, #ffb52b, #f97316);
}

.maroon-chip {
  background: linear-gradient(135deg, #7f1d1d, #312e81);
}

.footer-deep {
  background:
    radial-gradient(circle at right bottom, rgba(249,115,22,0.28), transparent 22%),
    linear-gradient(180deg, #1d1830 0%, #111322 100%);
}

.underline-anim {
  position: relative;
}

.underline-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
}

.underline-anim:hover::after,
.underline-anim.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.group:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pulse-badge {
  animation: pulseGlow 1.4s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42); }
  60% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drawer-open {
  overflow: hidden;
}

.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

.scrim {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scrim.open {
  opacity: 1;
  visibility: visible;
}

.count-number {
  font-variant-numeric: tabular-nums;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.18);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.video-play {
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  animation: floatPlay 2.2s ease-in-out infinite;
}

.phone-float {
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.28);
}

@keyframes floatPlay {
  50% { transform: scale(1.08); }
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple span.wave {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  animation: ripple 0.65s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 7rem;
}

.tag-pill {
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(249, 115, 22, 0.08);
}

.ad-label {
  letter-spacing: 0.26em;
}

.text-muted {
  color: var(--muted);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.26), transparent);
}

.search-hit mark {
  background: rgba(250, 204, 21, 0.4);
  color: inherit;
  padding: 0.05rem 0.2rem;
  border-radius: 0.25rem;
}

@media (max-width: 767px) {
  .page-panel {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    box-shadow: none;
  }

  .news-card-soft {
    border-radius: 1rem;
  }

  .section-title {
    align-items: flex-start;
  }

  .sidebar-sticky {
    position: static;
  }
}


