@charset "UTF-8";

/* --- CSS VARIABLES & THEME --- */
:root {
  --neon-green: #39ff14; 
  --neon-glow: rgba(57, 255, 20, 0.4);
  --bg-dark: #07070a;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);

  --text-main: #ffffff;
  --text-dim: #c0c0c0;
  --text-muted: #808080;

  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  background: var(--bg-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- UTILITIES --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.neon-text {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-glow), 0 0 20px rgba(57, 255, 20, 0.2);
}

/* --- ANIMATE ON SCROLL CLASSES --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98) translateZ(0);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- NAVBAR --- */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  background: transparent;
}

.nav-content {
  display: flex;
  justify-content: flex-start; /* Aligned to left */
  align-items: center;
}

.logo img {
  height: 110px; /* Made the logo even larger */
  width: auto;
  transition: transform 0.3s ease;
  animation: fadeDown 1s ease forwards;
}

/* --- FULL SCREEN MAGAZINE HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  background: #050507;
}

/* Background Image Animation (Slow Zoom) */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-image: url('Dominate.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  animation: subtleZoom 15s infinite alternate ease-in-out;
}

/* On desktop/laptop - fit the full image without cropping */
@media (min-width: 1024px) {
  .hero-bg {
    background-size: contain;
    background-position: center center;
  }
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Gradient overlays */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5,5,7,0) 0%, rgba(5,5,7,0) 60%, rgba(5,5,7,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 40px;
}

/* Massive Typography */
.mag-headline {
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: -2px;
  margin-bottom: 120px; 
}

/* Staggered text entrance */
.mag-headline span {
  display: block;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mag-white {
  color: #fff;
  text-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mag-green {
  color: var(--neon-green);
  text-shadow: 0 0 40px var(--neon-glow), 0 20px 40px rgba(0,0,0,0.8);
  z-index: 3;
}

.mag-headline span:nth-child(1) { animation-delay: 0.1s; }
.mag-headline span:nth-child(2) { animation-delay: 0.3s; }
.mag-headline span:nth-child(3) { animation-delay: 0.5s; }

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom CTA Area */
.hero-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}

.stars { color: #FFD700; font-size: 14px; letter-spacing: 2px; }
.trust-text { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; }

/* Buttons */
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

/* Magnetic/Glow Hover State */
.store-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
}

.store-btn:hover::after {
  width: 250px;
  height: 250px;
}

.store-btn:hover {
  border-color: var(--neon-green);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(57, 255, 20, 0.3);
}

.store-btn img { height: 32px; z-index: 1; position: relative;}
.btn-texts { display: flex; flex-direction: column; text-align: left; z-index: 1; position: relative;}
.btn-sub { font-size: 11px; color: #aaa; font-weight: 500; text-transform: uppercase; }
.btn-main { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1; }


/* --- MINIMALIST GRADIENT SECTIONS --- */
.minimal-section {
  padding: 60px 0 140px;
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: hidden;
}

/* --- AURORA WRAPPER BASE --- */
.aurora-wrapper {
  position: relative;
  overflow: hidden;
  background: #05050a; /* fallback if image fails to load */
}

/* Blurred image background layer */
.aurora-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background-image: url('join_intro_bg.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  filter: blur(6px) brightness(0.2); /* blur + darken to keep premium dark feel */
  transform: scale(1.05); /* slight scale to hide blur edges */
  pointer-events: none;
}

.aurora-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  filter: blur(140px);
  -webkit-filter: blur(140px);
  opacity: 0.35;
  border-radius: 50%;
  animation: floatAurora 18s infinite alternate ease-in-out;
  will-change: transform;
}

.aurora-1 {
  width: 90vw; height: 90vh;
  background: var(--neon-green);
  opacity: 0.12; /* Explicitly lowered to reduce brightness */
  top: -10%; left: -20%;
  animation-duration: 22s;
}

.aurora-2 {
  width: 100vw; height: 100vh;
  background: #00e5ff; /* Vibrant Cyan */
  top: 10%; right: -20%;
  animation-duration: 26s;
  animation-delay: -5s;
}

.aurora-3 {
  width: 120vw; height: 80vh;
  background: #8b5cf6; /* Vibrant Purple */
  bottom: 10%; left: -10%;
  animation-duration: 30s;
  animation-delay: -10s;
}

.aurora-4 {
  width: 100vw; height: 70vh;
  background: var(--neon-green); 
  opacity: 0.12; /* Explicitly lowered to reduce brightness */
  bottom: -20%; right: 10%;
  animation-duration: 28s;
  animation-delay: -15s;
}

.aurora-5 {
  width: 80vw; height: 80vh;
  background: #ff007f; /* Electric Magenta for "more color" richness */
  top: 40%; left: 10%;
  animation-duration: 24s;
  animation-delay: -7s;
}

@keyframes floatAurora {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(15%, 5%) scale(1.1) rotate(10deg); }
  66% { transform: translate(-10%, 15%) scale(0.95) rotate(-5deg); }
  100% { transform: translate(-5%, -10%) scale(1.05) rotate(5deg); }
}

.minimal-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.minimal-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
  /* Glassmorphism Panel Styles */
  background: rgba(20, 20, 25, 0.35); /* Translucent dark tint */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.minimal-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.minimal-subtitle {
  font-size: 14px;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 800;
}

.minimal-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.1;
}

.minimal-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.minimal-text p {
  font-size: 20px;
  color: #ccc;
  line-height: 1.8;
  font-weight: 300;
}

.minimal-text strong {
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
}

.minimal-text em {
  font-style: italic;
  color: var(--neon-green);
}

.minimal-list {
  list-style: none;
  width: 100%;
}

.minimal-list li {
  font-size: 18px;
  color: #ccc;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
  display: flex; 
  align-items: center;
}

.minimal-list li::before {
  content: '—';
  color: var(--neon-green);
  margin-right: 16px;
  font-weight: 800;
}

.minimal-list li:last-child {
  border-bottom: none;
}

.minimal-block:last-child {
  align-items: center;
}
.minimal-block:last-child .minimal-list li {
  justify-content: center;
}
.minimal-block:last-child .minimal-list li::before {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-green);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.4);
}

/* --- HOW IT WORKS TIMELINE --- */
.hiw-steps-block {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}

.hiw-steps-block:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
}

.hiw-header {
  margin-bottom: 48px;
}

.hiw-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.hiw-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.hiw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-green) 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(57, 255, 20, 0.4));
  min-width: 80px;
  text-align: center;
}

.step-line {
  flex: 1;
  width: 2px;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(57,255,20,0.4) 0%, rgba(0,229,255,0.1) 100%);
  border-radius: 2px;
  margin: 8px 0;
}

.step-line-last {
  background: transparent;
}

.step-content {
  padding: 8px 0 40px;
}

.step-label {
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.step-desc {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

.community-section {
  position: relative;
  z-index: 5;
  padding: 80px 0 20px;
  text-align: center;
  background: transparent;
  border: none;
}



.community-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.community-badge {
  display: inline-block;
  background: rgba(57, 255, 20, 0.05);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
}

.community-title {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.community-desc {
  font-size: 20px;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 5px 10px rgba(0,0,0,0.8);
  margin-bottom: 40px;
}

/* --- DISTRICT SECTION (MAP) --- */
.district-section {
  padding: 0 0 80px; /* Removed top padding to pull title closer to the map */
  background: transparent;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.district-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.district-map-container {
  position: relative;
}

.district-map-container img {
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.district-map-container:hover img {
  transform: scale(1.02);
}

.map-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: var(--neon-green);
  filter: blur(120px); opacity: 0.15;
  z-index: 1;
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }
}

.location-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--neon-green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}

.city-input-group {
  display: flex; gap: 16px; margin-top: 40px;
  background: var(--glass-bg); padding: 8px; border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.city-input {
  flex: 1; background: transparent; border: none; padding: 16px; color: #fff; font-size: 16px; font-family: inherit; outline: none;
}

.btn-vote {
  background: var(--neon-green); color: #000; border: none; border-radius: 12px; padding: 0 32px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease;
}

.btn-vote:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(57,255,20,0.4); }

/* --- FOOTER --- */
footer {
  background: transparent; padding: 60px 0 40px; border: none; text-align: center;
}

.social-links {
  display: flex; justify-content: center; gap: 16px; margin: 32px 0;
}

.social-link {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 18px; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-link:hover { background: var(--neon-green); color: #000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(57,255,20,0.3);}

.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--neon-green); }

.copyright { color: #888; font-size: 13px; margin-top: 16px; }

/* --- FAQ SECTION --- */
.faq-section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 48px;
  font-weight: 850;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1;
}

.faq-subtitle {
  font-size: 16px;
  color: var(--text-dim);
}

.faq-subtitle a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  gap: 20px;
}

.faq-icon {
  font-size: 18px;
  color: var(--neon-green);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ff3e3e; /* Red for close state as requested? No, usually X is red or just rotated green */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 32px 24px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 32px;
  border: 1px solid var(--glass-border);
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* --- DESKTOP / LAPTOP (1024px+) --- */
@media (min-width: 1024px) {
  /* Hero: show store buttons in a row */
  .btn-group {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  /* Community: wider centered layout */
  .community-section {
    padding: 120px 0 60px;
  }

  .community-title {
    font-size: 64px;
  }

  .community-desc {
    font-size: 20px;
    max-width: 680px;
    margin: 0 auto;
  }

  /* Minimal container: wider, 2-column grid for glass cards */
  .minimal-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  /* The How It Works block spans both columns */
  .hiw-steps-block {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .hiw-header {
    margin-bottom: 0;
  }

  /* District grid: side by side */
  .district-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .location-tag {
    justify-content: flex-start;
  }

  /* "Rise Through The Ranks" block spans both columns */
  .minimal-block.reveal.delay-3 {
    grid-column: 1 / -1;
  }

  .minimal-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
  }
}

/* --- TABLET (768px – 1023px) --- */
@media (max-width: 1023px) and (min-width: 768px) {
  .minimal-container {
    max-width: 700px;
  }

  .district-grid { grid-template-columns: 1fr; text-align: center; }
  .location-tag { justify-content: center; }
}

/* --- MOBILE (< 768px) --- */
@media (max-width: 767px) {
  .mag-headline { font-size: clamp(60px, 15vw, 100px); margin-bottom: 80px; }
  .btn-group { flex-direction: column; width: 100%; align-items: center; }
  .store-btn { width: 100%; max-width: 300px; justify-content: center; }
  .city-input-group { flex-direction: column; background: transparent; border: none; padding: 0; }
  .city-input { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; margin-bottom: 12px; }
  .btn-vote { padding: 16px; border-radius: 12px; }
  .district-grid { grid-template-columns: 1fr; text-align: center; }
  .location-tag { justify-content: center; }
}
