/* ═══════════════════════════════════════════════════
   CJP MODERN DESIGN SYSTEM — ROOT TOKENS
   ═══════════════════════════════════════════════════ */
:root {
  --bg-dark: hsl(240, 10%, 4%);
  --bg-dark-rgb: 10, 10, 10;
  --bg-card: rgba(22, 18, 18, 0.45);
  --border-glass: rgba(231, 76, 60, 0.15);
  --border-glass-hover: rgba(243, 156, 18, 0.35);
  
  /* Primary HSL colors */
  --accent-red: hsl(12, 90%, 55%);
  --accent-red-hover: hsl(12, 95%, 65%);
  --accent-amber: hsl(38, 95%, 55%);
  --accent-green: hsl(135, 75%, 38%);
  
  /* Typography colors */
  --text-primary: hsl(38, 30%, 93%);
  --text-muted: rgba(245, 239, 224, 0.45);
  --text-dark: hsl(240, 10%, 4%);

  /* Animation Timings */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

/* ═══════════════════════════════════════════════════
   GLOBAL ELEMENT RESETS & BASE STYLES
   ═══════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Hide default cursor on desktop devices with cursor precision */
@media (pointer: fine) {
  body {
    cursor: none;
  }
}

/* Custom Swarm Canvas Background */
#swarm-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
}

/* Noise overlay sheet */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(231, 76, 60, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* ═══════════════════════════════════════════════════
   PREMIUM CUSTOM MOUSE CURSORS
   ═══════════════════════════════════════════════════ */
#custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#custom-cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(231, 76, 60, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.1, 0.8, 0.3, 1), height 0.3s cubic-bezier(0.1, 0.8, 0.3, 1), border-color 0.2s;
}

/* ═══════════════════════════════════════════════════
   UTILITY LAYOUT & GLASSMORPHISM CLASSES
   ═══════════════════════════════════════════════════ */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 8px 32px 0 rgba(231, 76, 60, 0.08);
}

.section-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-intro {
  margin-bottom: 48px;
  max-width: 650px;
}

.section-label-accent {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 12px;
  display:flex;
  align-items:center;
  gap:10px;
}

.section-label-accent::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-amber);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 1px;
}

.section-title span {
  color: var(--accent-red);
}

.section-description-sub {
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Buttons System */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.35);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(245, 239, 224, 0.2);
}

.btn-secondary:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION STYLING
   ═══════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 2000;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(231, 76, 60, 0.15);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: none;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 2px solid var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  animation: pulse-badge-glow 3s infinite ease-in-out;
}

@keyframes pulse-badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--accent-amber);
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btn-cta {
  background: var(--accent-red);
  color: #fff;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: var(--transition-fast);
}

.nav-btn-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.language-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(245, 239, 224, 0.15);
  padding: 4px 10px;
  gap: 6px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(245, 239, 224, 0.35);
  cursor: none;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--text-primary);
}

.lang-divider {
  font-size: 0.75rem;
  color: rgba(245, 239, 224, 0.15);
}

/* Reading Progress Indicator */
#reading-progress {
  position: fixed;
  top: 70px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-amber));
  width: 0%;
  z-index: 2001;
}

/* ═══════════════════════════════════════════════════
   LIVE TICKER BAR
   ═══════════════════════════════════════════════════ */
.live-ticker-bar {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 1999;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-tag {
  background: var(--bg-dark);
  color: var(--accent-amber);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1.5px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  z-index: 2;
}

.ticker-wrapper {
  overflow: hidden;
  display: flex;
  flex: 1;
}

.ticker-content {
  display: inline-flex;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #fff;
  animation: ticker-slide 32s linear infinite;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   HERO BLOCK STYLING
   ═══════════════════════════════════════════════════ */
.hero-block {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-info {
  display: flex;
  flex-direction: column;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: blink-anim 1.5s infinite ease-in-out;
}

@keyframes blink-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.status-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 7.8rem);
  line-height: 0.85;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.hero-headline .h-top {
  display: block;
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(231, 76, 60, 0.15);
}

.hero-headline .h-mid {
  display: block;
}

.hero-headline .h-bottom {
  display: block;
  color: var(--accent-amber);
}

/* Glitch Animation Text */
.text-glitch {
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 2px var(--accent-red);
  color: transparent;
}

.text-glitch::before, .text-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.text-glitch::before {
  left: 2px;
  text-shadow: -1px 0 var(--accent-red);
  clip: rect(24px, 600px, 90px, 0);
  animation: glitch-left 3.5s infinite linear alternate-reverse;
}

.text-glitch::after {
  left: -2px;
  text-shadow: -1px 0 var(--accent-amber);
  clip: rect(85px, 600px, 140px, 0);
  animation: glitch-right 3.5s infinite linear alternate-reverse;
}

@keyframes glitch-left {
  0% { clip: rect(42px, 9999px, 44px, 0); }
  20% { clip: rect(12px, 9999px, 59px, 0); }
  40% { clip: rect(48px, 9999px, 29px, 0); }
  60% { clip: rect(92px, 9999px, 98px, 0); }
  80% { clip: rect(2px, 9999px, 64px, 0); }
  100% { clip: rect(78px, 9999px, 14px, 0); }
}

@keyframes glitch-right {
  0% { clip: rect(65px, 9999px, 119px, 0); }
  20% { clip: rect(79px, 9999px, 19px, 0); }
  40% { clip: rect(48px, 9999px, 130px, 0); }
  60% { clip: rect(34px, 9999px, 62px, 0); }
  80% { clip: rect(99px, 9999px, 9px, 0); }
  100% { clip: rect(58px, 9999px, 84px, 0); }
}

.hero-subheadline-devanagari {
  font-family: 'Rozha One', serif;
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-subheadline-devanagari::before {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--text-muted);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-description strong {
  color: var(--accent-amber);
}

.hero-actions-row {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Stats panel styling */
.hero-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-glass);
  background: rgba(20, 20, 20, 0.35);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 16px;
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  color: var(--accent-amber);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Floating Poster on Right */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-container {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.poster-back-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(231, 76, 60, 0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-breathe 4s infinite ease-in-out;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.swarm-poster-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
  animation: float-poster 6s infinite ease-in-out;
}

@keyframes float-poster {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.4deg); }
  66% { transform: translateY(-5px) rotate(-0.2deg); }
}

/* Sticker on Poster */
.poster-badge-sticker {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent-amber);
  border: 2px solid var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: rotate(12deg);
  animation: rotate-sticker 15s infinite linear;
}

@keyframes rotate-sticker {
  0% { transform: rotate(12deg); }
  100% { transform: rotate(372deg); }
}

.sticker-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.sticker-sub {
  font-size: 0.45rem;
  font-weight: 800;
  color: var(--text-dark);
  opacity: 0.8;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   LIVE SWARM DASHBOARD (Activity Feed)
   ═══════════════════════════════════════════════════ */
.dashboard-block {
  padding: 30px;
  margin-top: -40px;
  z-index: 10;
  position: relative;
  border-radius: 4px;
}

.dashboard-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.08);
  padding-bottom: 12px;
}

.dashboard-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-glow {
  color: var(--accent-green);
  font-size: 0.75rem;
  margin-right: 6px;
  animation: indicator-flash 1.5s infinite;
}

@keyframes indicator-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.dashboard-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.feed-container {
  height: 100px;
  overflow-y: hidden;
  position: relative;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
}

.feed-item {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--accent-amber);
}

.feed-time {
  color: var(--accent-red);
  font-weight: bold;
}

.feed-body {
  flex: 1;
}

.feed-tag {
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 6px;
  background: rgba(231, 76, 60, 0.15);
  color: var(--accent-red);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   ORIGIN TIMELINE SECTION
   ═══════════════════════════════════════════════════ */
.origin-block {
  position: relative;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.hindi-title-badge {
  font-family: 'Rozha One', serif;
  font-size: 1.4rem;
  color: rgba(245, 239, 224, 0.2);
  margin-top: 16px;
  display: block;
}

.para-glow {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.origin-right p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.origin-right strong {
  color: var(--text-primary);
}

/* Vertical Timeline */
.timeline-wrapper {
  position: relative;
  padding-left: 24px;
  margin-top: 40px;
}

.timeline-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-red), rgba(231, 76, 60, 0.05));
}

.timeline-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-card {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(245, 239, 224, 0.04);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  background: rgba(231, 76, 60, 0.03);
  border-color: rgba(231, 76, 60, 0.15);
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  z-index: 2;
  transition: var(--transition-fast);
}

.timeline-card:hover::before {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber);
}

.time-marker {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--accent-amber);
  letter-spacing: 2px;
}

.time-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px 0 8px 0;
  text-transform: uppercase;
}

.time-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SUPPORT & QR CARD SECTION
   ═══════════════════════════════════════════════════ */
.support-block {
  padding: 60px 48px;
  overflow: hidden;
  position: relative;
}

.support-block::before {
  content: 'RESIST';
  position: absolute;
  right: -50px;
  bottom: -40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14rem;
  color: rgba(231, 76, 60, 0.02);
  line-height: 1;
  letter-spacing: 12px;
  pointer-events: none;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.support-desc-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.support-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.support-bullets-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bullet-icon {
  font-size: 0.9rem;
}

.support-tagline-hindi {
  font-family: 'Rozha One', serif;
  font-size: 1.1rem;
  color: rgba(245, 239, 224, 0.25);
  border-left: 2px solid var(--accent-red);
  padding-left: 12px;
}

/* QR Code Card Wrapper */
.support-qr-box {
  display: flex;
  justify-content: center;
}

.qr-card {
  position: relative;
  background: var(--bg-dark);
  border: 1px solid rgba(231, 76, 60, 0.25);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  width: 100%;
}

.qr-glow-layer {
  position: absolute;
  inset: 0;
  box-shadow: 0 0 40px rgba(231, 76, 60, 0.08);
  pointer-events: none;
}

.qr-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-amber);
  margin-bottom: 20px;
}

.qr-image-container {
  position: relative;
  background: #fff;
  padding: 12px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.qr-border-accent {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--accent-red);
  border-style: solid;
  z-index: 10;
}

.qr-border-accent.tl { top: -4px; left: -4px; border-width: 3px 0 0 3px; }
.qr-border-accent.tr { top: -4px; right: -4px; border-width: 3px 3px 0 0; }
.qr-border-accent.bl { bottom: -4px; left: -4px; border-width: 0 0 3px 3px; }
.qr-border-accent.br { bottom: -4px; right: -4px; border-width: 0 3px 3px 0; }

.qr-code-svg {
  width: 100%;
  height: 100%;
}

.qr-upi-labels {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.btn-qr-action {
  background: transparent;
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: var(--transition-smooth);
  cursor: none;
}

.btn-qr-action:hover {
  border-color: var(--accent-red);
  background: rgba(231, 76, 60, 0.08);
}

.qr-legal-disclaimer {
  font-size: 0.58rem;
  line-height: 1.4;
  color: rgba(245, 239, 224, 0.2);
  margin-top: 18px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   MANIFESTO / DEMANDS INTERACTIVE BLOCK
   ═══════════════════════════════════════════════════ */
.demands-block {
  position: relative;
}

.demands-interactive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.demand-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  cursor: none;
  transition: var(--transition-smooth);
}

.demand-glass-card:hover {
  border-color: var(--border-glass-hover);
  background: rgba(231, 76, 60, 0.04);
  transform: translateY(-4px);
}

.demand-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.demand-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(231, 76, 60, 0.2);
  line-height: 1;
  transition: var(--transition-fast);
}

.demand-glass-card:hover .demand-index {
  color: rgba(231, 76, 60, 0.55);
}

.demand-emoji {
  font-size: 1.4rem;
}

.demand-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.demand-card-summary {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Expanded details drawer */
.demand-details-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 4px;
  display: none;
  animation: slide-drawer-down 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-drawer-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(245, 239, 224, 0.06);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

#drawer-demand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-amber);
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.2s;
}

.drawer-close-btn:hover {
  color: var(--accent-red);
}

.drawer-content {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.65;
}

.drawer-content ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-content li::before {
  content: '⚡';
  margin-right: 8px;
  color: var(--accent-red);
}

/* ═══════════════════════════════════════════════════
   QUOTE BANNER BLOCK
   ═══════════════════════════════════════════════════ */
.manifesto-banner-block {
  position: relative;
  background: linear-gradient(135deg, var(--accent-red), hsl(12, 70%, 40%));
  padding: 80px 48px;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(0, 0, 0, 0.08) 15px, rgba(0, 0, 0, 0.08) 16px);
  pointer-events: none;
}

.banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 1px;
}

.quote-symbol {
  font-size: 4.5rem;
  display: block;
  line-height: 0.1;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}

.quote-hindi-translate {
  display: block;
  font-family: 'Rozha One', serif;
  font-size: 0.4em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  letter-spacing: 1.5px;
}

.banner-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.author-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   YOUTUBE VIDEOS GRID
   ═══════════════════════════════════════════════════ */
.videos-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.video-card-frame {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.video-iframe-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect */
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 76, 60, 0.2);
  background: #000;
  margin-bottom: 16px;
}

.video-iframe-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-details {
  display: flex;
  flex-direction: column;
}

.video-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.video-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════
   ELIGIBILITY GRID
   ═══════════════════════════════════════════════════ */
.eligibility-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eligibility-card {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.eligibility-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.eligibility-card:hover::after {
  transform: scaleX(1);
}

.eligibility-card:hover {
  background: rgba(231, 76, 60, 0.03);
  border-color: rgba(231, 76, 60, 0.25);
}

.elig-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.elig-emoji-large {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.eligibility-card:hover .elig-emoji-large {
  transform: scale(1.15) rotate(5deg);
}

.elig-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.elig-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.eligibility-banner-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(245, 239, 224, 0.15);
  letter-spacing: 3px;
}

/* ═══════════════════════════════════════════════════
   QUIZ ENGINE BLOCK
   ═══════════════════════════════════════════════════ */
.quiz-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.quiz-intro-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 32px;
}

.quiz-status-tracker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#quiz-step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-red);
  text-transform: uppercase;
}

.progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(245, 239, 224, 0.05);
  position: relative;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Interactive Column */
.quiz-card-container {
  background: var(--bg-dark);
  border: 1px solid rgba(245, 239, 224, 0.06);
  padding: 36px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quiz-step-slide {
  display: none;
  animation: fade-slide-in 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quiz-step-slide.active {
  display: block;
}

@keyframes fade-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 28px;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 239, 224, 0.1);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  cursor: none;
  transition: var(--transition-fast);
}

.option-btn:hover {
  background: rgba(231, 76, 60, 0.06);
  border-color: rgba(231, 76, 60, 0.35);
  transform: translateX(4px);
}

.option-btn.selected {
  background: rgba(231, 76, 60, 0.12);
  border-color: var(--accent-red);
}

.opt-alpha {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--accent-red);
  margin-right: 16px;
}

/* Quiz Result Panel */
.quiz-result-view {
  display: none;
  text-align: center;
  flex-direction: column;
  align-items: center;
  animation: zoom-result-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoom-result-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.result-celebration-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(231, 76, 60, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.result-badge-emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.result-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-red);
  text-transform: uppercase;
}

.result-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 1px;
  margin: 4px 0 16px 0;
}

.result-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.result-metric-pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(243, 156, 18, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.result-actions-row {
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════
   MEMBER CARD GENERATOR
   ═══════════════════════════════════════════════════ */
.card-generator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card-preview-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-card-wrapper {
  width: 100%;
  max-width: 440px;
}

/* Card Visual Element */
.member-card-container {
  width: 100%;
  aspect-ratio: 1.75;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(231, 76, 60, 0.15);
  transition: var(--transition-smooth);
}

.card-stripe-top {
  height: 6px;
  flex-shrink: 0;
}

.card-inner-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-back-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.card-header-brand {
  display: flex;
  flex-direction: column;
}

.card-brand-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.card-brand-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-top: 2px;
}

.card-header-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.card-center {
  text-align: center;
  z-index: 2;
}

.card-roach-avatar {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.card-holder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  letter-spacing: 2px;
  line-height: 1;
}

.card-holder-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.card-divider-line {
  height: 1px;
  opacity: 0.25;
  margin: 8px 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.card-footer-left {
  display: flex;
  flex-direction: column;
}

.card-id-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.card-location {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 2px;
}

.card-footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.card-slogan-eng {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

.card-slogan-hin {
  font-family: 'Rozha One', serif;
  font-size: 0.52rem;
  opacity: 0.5;
  margin-top: 1px;
}

.card-stripe-bottom {
  height: 4px;
  flex-shrink: 0;
}

.live-update-hint {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Card Themes Definitions */

/* 1. Classic Theme (Dark & Red) */
.member-card-container.theme-classic {
  background: #0c0808;
  border-color: rgba(231, 76, 60, 0.4);
}
.theme-classic .card-stripe-top {
  background: linear-gradient(90deg, #FF9933 33.3%, #f5efe0 33.3% 66.6%, #138808 66.6%);
}
.theme-classic .card-back-grid {
  background-image: radial-gradient(rgba(231, 76, 60, 0.15) 1px, transparent 1px);
  background-size: 14px 14px;
}
.theme-classic .card-brand-main { color: var(--accent-red); }
.theme-classic .card-header-badge {
  background: var(--accent-red);
  color: #fff;
  border: 1px solid var(--accent-amber);
}
.theme-classic .card-holder-name { color: var(--text-primary); }
.theme-classic .card-holder-title { color: var(--accent-amber); }
.theme-classic .card-divider-line { background: rgba(231, 76, 60, 0.3); }
.theme-classic .card-id-num { color: var(--text-muted); }
.theme-classic .card-stripe-bottom { background: var(--accent-red); }

/* 2. Cyberpunk Theme (Neon Cyan & Pink) */
.member-card-container.theme-cyberpunk {
  background: #020b12;
  border-color: rgba(0, 242, 254, 0.4);
}
.theme-cyberpunk .card-stripe-top {
  background: linear-gradient(90deg, #ff007f 0%, #00f2fe 100%);
}
.theme-cyberpunk .card-back-grid {
  background-image: linear-gradient(rgba(0, 242, 254, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 242, 254, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
}
.theme-cyberpunk .card-brand-main { color: #00f2fe; }
.theme-cyberpunk .card-header-badge {
  background: #ff007f;
  color: #fff;
  border: 1px solid #00f2fe;
}
.theme-cyberpunk .card-holder-name { color: #fff; text-shadow: 0 0 10px rgba(0, 242, 254, 0.5); }
.theme-cyberpunk .card-holder-title { color: #ff007f; }
.theme-cyberpunk .card-divider-line { background: rgba(0, 242, 254, 0.3); }
.theme-cyberpunk .card-id-num { color: #00f2fe; }
.theme-cyberpunk .card-stripe-bottom { background: #00f2fe; }

/* 3. Gold Theme (Premium Amber) */
.member-card-container.theme-gold {
  background: #110d05;
  border-color: rgba(243, 156, 18, 0.4);
}
.theme-gold .card-stripe-top {
  background: linear-gradient(90deg, #f1c40f 0%, #f39c12 100%);
}
.theme-gold .card-back-grid {
  background-image: radial-gradient(rgba(243, 156, 18, 0.12) 1px, transparent 1px);
  background-size: 12px 12px;
}
.theme-gold .card-brand-main { color: var(--accent-amber); }
.theme-gold .card-header-badge {
  background: var(--accent-amber);
  color: var(--bg-dark);
  border: 1px solid #fff;
}
.theme-gold .card-holder-name { color: #fff; }
.theme-gold .card-holder-title { color: #fff; opacity: 0.85; }
.theme-gold .card-divider-line { background: rgba(243, 156, 18, 0.3); }
.theme-gold .card-id-num { color: var(--accent-amber); }
.theme-gold .card-stripe-bottom { background: var(--accent-amber); }

/* 4. Minimalist Theme (Shadow Black & White) */
.member-card-container.theme-minimalist {
  background: #0e0e10;
  border-color: rgba(255, 255, 255, 0.15);
}
.theme-minimalist .card-stripe-top {
  background: #fff;
}
.theme-minimalist .card-back-grid {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.theme-minimalist .card-brand-main { color: #fff; }
.theme-minimalist .card-header-badge {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.theme-minimalist .card-holder-name { color: #fff; }
.theme-minimalist .card-holder-title { color: rgba(255, 255, 255, 0.6); }
.theme-minimalist .card-divider-line { background: rgba(255, 255, 255, 0.15); }
.theme-minimalist .card-id-num { color: rgba(255, 255, 255, 0.4); }
.theme-minimalist .card-stripe-bottom { background: #fff; }

/* Input fields inside generator card */
.card-inputs-column {
  padding: 36px;
}

.form-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-field-group.full-width {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field-input, .field-select, .field-textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 239, 224, 0.1);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition-fast);
}

.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--accent-red);
  background: rgba(231, 76, 60, 0.03);
}

.readonly-input {
  color: rgba(245, 239, 224, 0.35);
  background: rgba(255, 255, 255, 0.01);
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245, 239, 224, 0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-actions-block {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════
   REGISTRATION BLOCK
   ═══════════════════════════════════════════════════ */
.register-container {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.register-glow-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-amber));
}

.register-header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 36px;
}

.register-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: 1px;
}

.register-title .title-top {
  color: var(--text-primary);
}

.register-title .title-bottom {
  display: block;
}

.text-glitch-primary {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-red);
}

.register-subtitle-hindi {
  font-family: 'Rozha One', serif;
  font-size: 1.25rem;
  color: var(--accent-amber);
  margin: 8px 0 16px 0;
}

.register-intro-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.register-form-box {
  max-width: 600px;
  margin: 0 auto;
}

.register-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.form-actions-column {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.register-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
}

.register-or-divider::before, .register-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 239, 224, 0.08);
}

.register-or-divider span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 0 12px;
}

.register-counter-footer {
  margin-top: 36px;
  text-align: center;
  border-top: 1px solid rgba(245, 239, 224, 0.05);
  padding-top: 24px;
}

.counter-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.counter-highlight {
  font-weight: 700;
  color: var(--accent-amber);
}

/* ═══════════════════════════════════════════════════
   EMBEDDED GOOGLE & CUSTOM COMPLAINT FORMS
   ═══════════════════════════════════════════════════ */
.forms-block {
  padding: 40px;
}

.forms-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.forms-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.forms-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.form-toggle-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 239, 224, 0.1);
  padding: 4px;
  gap: 4px;
}

.toggle-btn {
  background: transparent;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  cursor: none;
  transition: var(--transition-fast);
}

.toggle-btn.active {
  background: var(--accent-red);
  color: #fff;
}

.forms-wrapper {
  width: 100%;
  height: 480px;
  border: 1px solid rgba(245, 239, 224, 0.08);
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}

.forms-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Custom Grievance Form styling */
.custom-form-body {
  padding: 32px;
  height: 100%;
  overflow-y: auto;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════════════
   STICKY ANTHEM PLAYER CONSOLE
   ═══════════════════════════════════════════════════ */
.anthem-player-fixed {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1900;
  max-width: 320px;
  width: calc(100vw - 48px);
}

.audio-panel-card {
  background: rgba(15, 12, 12, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(231, 76, 60, 0.25);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.player-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.btn-audio-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.35);
  transition: var(--transition-fast);
}

.btn-audio-play:hover {
  background: var(--accent-red-hover);
  transform: scale(1.05);
}

.audio-svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.audio-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.audio-track-title {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.audio-track-status {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.player-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
}

/* Audio visual bars animation */
.mock-waveform-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.mock-waveform-visualizer .bar {
  width: 2px;
  height: 3px;
  background: var(--accent-amber);
  border-radius: 1px;
}

.mock-waveform-visualizer.playing .bar {
  animation: visual-jump 1s infinite alternate;
}

.mock-waveform-visualizer.playing .bar-1 { animation-delay: 0.1s; }
.mock-waveform-visualizer.playing .bar-2 { animation-delay: 0.4s; }
.mock-waveform-visualizer.playing .bar-3 { animation-delay: 0.2s; }
.mock-waveform-visualizer.playing .bar-4 { animation-delay: 0.6s; }
.mock-waveform-visualizer.playing .bar-5 { animation-delay: 0.3s; }
.mock-waveform-visualizer.playing .bar-6 { animation-delay: 0.5s; }
.mock-waveform-visualizer.playing .bar-7 { animation-delay: 0.2s; }

@keyframes visual-jump {
  0% { height: 3px; }
  100% { height: 18px; }
}

.volume-slider-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-icon {
  font-size: 0.7rem;
}

.volume-range-input {
  width: 50px;
  height: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(245, 239, 224, 0.15);
  outline: none;
}

.volume-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
  cursor: none;
}

/* ═══════════════════════════════════════════════════
   SOCIAL FAB CONTAINER (Fly-out)
   ═══════════════════════════════════════════════════ */
.social-fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-fab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.social-fab-container.open .social-fab-list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.social-fab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  cursor: none;
}

.social-fab-item:hover {
  transform: scale(1.08);
}

.fab-x { background: #000; border: 1.5px solid rgba(255, 255, 255, 0.1); }
.fab-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.fab-telegram { background: #229ED9; }

.social-fab-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent-red);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: none;
  transition: var(--transition-smooth);
}

.social-fab-toggle:hover {
  background: var(--accent-red-hover);
  transform: scale(1.05);
}

.social-fab-toggle .fab-icon-active {
  display: none;
}

.social-fab-container.open .social-fab-toggle {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(90deg);
}

.social-fab-container.open .fab-icon-default { display: none; }
.social-fab-container.open .fab-icon-active { display: block; }

/* ═══════════════════════════════════════════════════
   MODAL OVERLAY SYSTEM
   ═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  max-width: 360px;
  width: 90%;
  padding: 36px 28px;
  position: relative;
  border-top: 3px solid var(--accent-red);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.1);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--accent-red);
}

.modal-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-qr-container {
  background: #fff;
  padding: 16px;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
}

.modal-qr-svg {
  width: 100%;
  height: 100%;
}

.modal-upi-address-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245, 239, 224, 0.1);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.upi-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.upi-value {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.btn-copy-upi {
  background: transparent;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: none;
  border-bottom: 1.5px solid var(--accent-red);
}

.modal-footer-note {
  font-size: 0.7rem;
  color: rgba(245, 239, 224, 0.2);
  text-align: center;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   TOAST NOTIFICATION ENGINE
   ═══════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  width: calc(100vw - 48px);
  pointer-events: none;
}

.toast-item {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-left: 4px solid var(--accent-red);
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: auto;
  animation: slide-toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

@keyframes slide-toast-in {
  from { opacity: 0; transform: translateX(-120%); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-item.removing {
  animation: slide-toast-out 0.4s ease forwards;
}

@keyframes slide-toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-120%); }
}

.toast-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.toast-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.toast-close {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: none;
}

.toast-msg {
  font-size: 0.78rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   FOOTER STYLING
   ═══════════════════════════════════════════════════ */
#main-footer {
  background: #060505;
  border-top: 1px solid rgba(231, 76, 60, 0.15);
  padding: 80px 48px 32px;
  margin-top: 80px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-badge-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 1px solid var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-satire-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.25);
  color: var(--accent-red);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-links-column h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom-row {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 239, 224, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.72rem;
  color: rgba(245, 239, 224, 0.25);
  letter-spacing: 0.5px;
}

.footer-disclaimer-bottom {
  font-size: 0.68rem;
  color: rgba(245, 239, 224, 0.15);
  max-width: 480px;
  text-align: right;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   SYSTEM REPAIR SIMULATOR STYLING
   ═══════════════════════════════════════════════════ */
.repair-block {
  padding: 60px 48px;
  position: relative;
  margin-top: 40px;
}

.repair-dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 36px;
}

.repair-canvas-column {
  display: flex;
  justify-content: center;
  width: 100%;
}

.repair-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1.43; /* 600 / 420 */
  background: #060505;
  border: 1px solid rgba(231, 76, 60, 0.2);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
  overflow: hidden;
}

#repair-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Glowing green scanner line effect */
.repair-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.5), transparent);
  pointer-events: none;
  z-index: 5;
  animation: scan-vertical 5s linear infinite;
}

@keyframes scan-vertical {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Control settings */
.repair-controls-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.repair-stats-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(245, 239, 224, 0.06);
  padding: 20px;
}

.repair-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.r-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.r-val {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--accent-amber);
}

.repair-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(245, 239, 224, 0.05);
  position: relative;
}

.repair-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-amber));
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.repair-btn-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Terminal log settings */
.repair-log-terminal {
  background: #030303;
  border: 1px solid rgba(245, 239, 224, 0.06);
  display: flex;
  flex-direction: column;
  height: 160px;
}

.terminal-header {
  background: #0d0d0d;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.04);
}

.term-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.term-dot.red { background: #fc5753; }
.term-dot.yellow { background: #fdbc40; }
.term-dot.green { background: #33c748; }

.term-title {
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(245, 239, 224, 0.4);
  margin-left: 6px;
  letter-spacing: 1px;
}

.terminal-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-line {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(245, 239, 224, 0.85);
  line-height: 1.4;
}

.log-line.text-success { color: var(--accent-green); }
.log-line.text-warning { color: var(--accent-amber); }
.log-line.text-error { color: var(--accent-red); }

/* Success Overlay Card */
.repair-success-card {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: none; /* revealed via script */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  z-index: 10;
  animation: fade-repair-in 0.4s ease;
}

@keyframes fade-repair-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.repair-success-emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 16px;
  animation: pop-trophy 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-trophy {
  from { transform: scale(0.6) rotate(-15deg); }
  to { transform: scale(1) rotate(0); }
}

.repair-success-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent-amber);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.repair-success-card p {
  font-size: 0.92rem;
  color: var(--text-primary);
  max-width: 380px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN MEDIA QUERIES
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid, .origin-grid, .support-grid, .banner-inner, .card-generator-grid, .quiz-grid, .repair-dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-graphic {
    order: -1;
  }
  
  .demands-interactive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .eligibility-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  #main-nav {
    padding: 0 24px;
  }
  
  .nav-menu {
    display: none; /* Mobile hamburger toggle can be implemented, but simple hidden links keep clean UI focus */
  }
  
  .demands-interactive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .timeline-card::before {
    left: -31px;
  }
  
  .footer-disclaimer-bottom {
    text-align: left;
  }
  
  .anthem-player-fixed {
    bottom: 84px; /* Stack player above FAB when on mobile */
  }
}

@media (max-width: 520px) {
  .demands-interactive-grid, .eligibility-grid-layout, .register-form-grid, .form-grid-layout, .videos-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card:nth-child(2) {
    border-right: none;
  }
  
  .stat-card:nth-child(3) {
    border-top: 1px solid var(--border-glass);
  }
  
  .stat-card:nth-child(4) {
    border-top: 1px solid var(--border-glass);
    border-right: none;
  }
  
  .support-block {
    padding: 36px 20px;
  }
  
  .banner-author-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM GLASSMORPHIC AD PLACEMENTS (ADSENSE)
   ═══════════════════════════════════════════════════ */
.cjp-ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 36px auto;
  padding: 16px;
  background: rgba(22, 18, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px dashed rgba(243, 156, 18, 0.25);
  border-radius: 4px;
  max-width: 1200px;
  width: 90%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.cjp-ad-slot:hover {
  border-color: rgba(243, 156, 18, 0.55);
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.1);
}

.cjp-ad-slot .ad-label {
  font-family: monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.cjp-ad-slot .ad-content-placeholder {
  min-height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(245, 239, 224, 0.05);
  position: relative;
  z-index: 2;
}

/* Specific Slot Overrides */
.ad-leaderboard {
  max-width: 760px;
}

.ad-feed {
  max-width: 800px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.ad-footer {
  max-width: 1200px;
  margin-top: 56px;
  margin-bottom: 24px;
}

/* In-Content Rectangular Ad Section layout */
.ad-display-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
  margin-top: 40px;
}

.ad-card-wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: rgba(22, 18, 18, 0.3);
  border: 1px dashed rgba(231, 76, 60, 0.25);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.ad-card-wrapper:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.1);
}

.ad-card-wrapper .ad-label {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ad-card-wrapper .ad-content-placeholder {
  min-height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 239, 224, 0.05);
}
