@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Global Variables */
:root {
  --bg-darkest: #070a13;
  --bg-darker: #0d1220;
  --bg-card: rgba(22, 30, 49, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(239, 68, 68, 0.15);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.4);
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.4);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --glow-shadow-red: 0 8px 30px rgba(239, 68, 68, 0.1);
  --glow-shadow-amber: 0 8px 30px rgba(245, 158, 11, 0.1);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* Background Gradients & Glows */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.ambient-glow-2 {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Navigation */
/* Modern Glassmorphism Navigation System */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 19, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon-wrapper {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo:hover .logo-icon-wrapper {
  transform: scale(1.05) rotate(-3deg);
  background: rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
}

.logo-highlight {
  color: var(--accent-red);
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.3rem 0.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.15);
  transform: translateY(-1px);
}

.nav-cta-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-report-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-report-nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.55);
}

.btn-report-nav svg {
  animation: pulse-icon 2s infinite ease-in-out;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  animation: pulse-border 2s infinite;
}

h1 {
  font-family: var(--font-mono);
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff 30%, #94a3b8 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span {
  background: linear-gradient(to right, var(--accent-red), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
  transform: translateY(-3px);
}

.warning-bar {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, rgba(245, 158, 11, 0.15) 50%, rgba(239, 68, 68, 0.15) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.warning-bar svg {
  flex-shrink: 0;
  color: var(--accent-amber);
  animation: pulse-icon 1.5s infinite;
}

.warning-text h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.warning-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Dashboard Quick Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  opacity: 0.5;
  transition: var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: var(--glow-shadow-red);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-num.red {
  color: var(--accent-red);
}

.stat-num.amber {
  color: var(--accent-amber);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modals & Subsections header styling */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Warning Signs/Modus Operandi Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pattern-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pattern-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow-amber);
}

.icon-wrapper {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.pattern-card.red-card .icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  border-color: rgba(239, 68, 68, 0.2);
}

.pattern-card.red-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: var(--glow-shadow-red);
}

.pattern-card h3 {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.pattern-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Timeline/Delay Sequence */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-red), var(--border-color) 80%);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 3.5rem;
}

.timeline-dot {
  position: absolute;
  left: 20px;
  top: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 4px solid var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  z-index: 2;
}

.timeline-item.warning .timeline-dot {
  border-color: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.timeline-content h4 {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-content .time-label {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Gurgaon Location Spotlight Card */
.location-spotlight {
  background: linear-gradient(135deg, rgba(22, 30, 49, 0.9) 0%, rgba(13, 18, 32, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.location-spotlight::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(0,0,0,0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.spotlight-info h3 {
  font-family: var(--font-mono);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.spotlight-info h3 span {
  color: var(--accent-red);
}

.spotlight-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.office-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.office-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.office-details li svg {
  color: var(--accent-red);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.spotlight-status {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.status-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

.spotlight-status h4 {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.spotlight-status p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Grievance Register / Interactive Section */
.grievance-section {
  background: var(--bg-darker);
}

.board-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

/* Form Styles */
.complaint-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.complaint-form-card h3 {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(7, 10, 19, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Complaint Register Board */
.complaints-board {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.board-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-wrapper {
  flex-grow: 1;
  position: relative;
}

.search-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-control {
  padding-left: 2.8rem;
}

.filter-control {
  min-width: 150px;
}

.complaints-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.complaint-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
  animation: slide-in 0.4s ease-out;
}

.complaint-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.complaint-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.victim-meta {
  display: flex;
  flex-direction: column;
}

.victim-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.victim-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.complaint-amount {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.complaint-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  white-space: pre-line;
}

.complaint-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-verify {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-amber);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-verify:hover {
  text-decoration: underline;
}

/* Legal Actions Section */
.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: -1.5rem;
}

.legal-card h3 {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.legal-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.action-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.action-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.action-steps li strong {
  color: var(--text-primary);
}

.action-steps li::before {
  content: '→';
  color: var(--accent-red);
  font-weight: bold;
}

.btn-action-card {
  margin-top: auto;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  justify-content: center;
}

/* Legal Resources Bar */
.resources-bar {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.resources-info {
  max-width: 700px;
}

.resources-info h4 {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.resources-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-disclaimer {
  max-width: 700px;
  font-size: 0.80rem;
  line-height: 1.4;
}

/* Animations */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

/* Responsive adjustments */
@media (max-width: 968px) {
  h1 {
    font-size: 2.8rem;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .board-container {
    grid-template-columns: 1fr;
  }
  .resources-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can implement a mobile menu toggle if needed, or keep simple links */
  }
  h1 {
    font-size: 2.3rem;
  }
  section {
    padding: 4rem 0;
  }
}

/* Warning Marquee Styles */
.warning-marquee {
  width: 100%;
  background: var(--accent-red);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  z-index: 99;
  position: relative;
  margin-top: 4.8rem; /* below navbar */
}

.marquee-content {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  animation: marquee-scroll 25s linear infinite;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Giant background watermark text */
.watermark-bg {
  position: absolute;
  top: 15rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11rem;
  font-weight: 900;
  color: rgba(239, 68, 68, 0.05);
  text-transform: uppercase;
  pointer-events: none;
  z-index: -1;
  letter-spacing: 20px;
  user-select: none;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.watermark-bg.scam {
  top: 32rem;
  color: rgba(239, 68, 68, 0.03);
}

.bold-fraud-heading {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.9), 0 0 50px rgba(239, 68, 68, 0.4);
    transform: scale(1.02);
  }
}
