:root {
  --bg: #050505;
  --bg-soft: #101010;
  --surface: rgba(22, 22, 22, 0.82);
  --surface-strong: #141414;
  --text: #f8f4eb;
  --muted: #c8c0b2;
  --gold: #ffbf3a;
  --orange: #ff6f1f;
  --green: #24d06c;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 111, 31, 0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(36, 208, 108, 0.12), transparent 30%),
    linear-gradient(180deg, #030303 0%, #080808 45%, #040404 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  top: 3rem;
  left: -10rem;
  background: linear-gradient(135deg, var(--orange), transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  right: -8rem;
  top: 30%;
  background: linear-gradient(135deg, var(--green), transparent 70%);
  animation: floatOrb 16s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-mark,
.avatar,
.dj-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(255, 191, 58, 0.28);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 4rem;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(5, 5, 5, 0.88)),
    radial-gradient(circle at center, rgba(255, 111, 31, 0.18), transparent 35%),
    linear-gradient(120deg, rgba(255, 191, 58, 0.08), rgba(36, 208, 108, 0.1)),
    url("https://images.unsplash.com/photo-1571266028243-d220c9b0e878?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.9));
}

.hero-eq {
  position: absolute;
  right: 8%;
  bottom: 12%;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.hero-eq span {
  width: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  box-shadow: 0 0 18px rgba(36, 208, 108, 0.45);
  animation: equalize 1.2s ease-in-out infinite;
}

.hero-eq span:nth-child(1) { height: 2rem; }
.hero-eq span:nth-child(2) { height: 4rem; animation-delay: 0.15s; }
.hero-eq span:nth-child(3) { height: 3rem; animation-delay: 0.3s; }
.hero-eq span:nth-child(4) { height: 4.8rem; animation-delay: 0.45s; }
.hero-eq span:nth-child(5) { height: 2.6rem; animation-delay: 0.6s; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.panel-kicker,
.player-label,
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 191, 58, 0.12);
  border: 1px solid rgba(255, 191, 58, 0.2);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.advertise-copy h2 {
  margin: 1rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.96;
}

.hero-copy p,
.section-head p,
.advertise-copy p,
.dj-card p,
.feature-story p,
.event-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  box-shadow: 0 16px 40px rgba(255, 111, 31, 0.25);
}

.btn-secondary,
.btn-small {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-small {
  padding: 0.8rem 1rem;
}

.live-cta-btn {
  white-space: nowrap;
}

.pulse-ring {
  position: relative;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -0.3rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 191, 58, 0.45);
  animation: pulse 1.8s infinite;
}

.live-status,
.host-chip {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.live-status {
  margin-top: 1.4rem;
}

.live-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(36, 208, 108, 0.7);
  animation: pulseDot 1.6s infinite;
}

.glass-card,
.ad-slot,
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
}

.panel,
.ad-slot,
.player-card,
.feature-story,
.dj-card,
.embed-card,
.social-feed,
.stats-panel,
.event-card {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.glow-avatar {
  width: 3.2rem;
  height: 3.2rem;
}

.host-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.ad-slot {
  display: grid;
  gap: 0.4rem;
  background:
    linear-gradient(135deg, rgba(255, 191, 58, 0.08), rgba(36, 208, 108, 0.08)),
    rgba(20, 20, 20, 0.85);
}

.ad-slot span {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.player-live-btn {
  min-width: 6.5rem;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4c45, #ff6b3d);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 76, 69, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.player-live-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 76, 69, 0.35);
}

.player-live-btn.is-playing {
  background: linear-gradient(135deg, #16b85a, #3ed87c);
  box-shadow: 0 12px 28px rgba(36, 208, 108, 0.24);
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.volume-wrap input[type="range"] {
  width: 6rem;
  accent-color: var(--gold);
}

#nowPlayingText {
  color: var(--text);
}

.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.show-grid,
.dj-grid,
.lineup-grid {
  display: grid;
  gap: 1.4rem;
}

.show-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dj-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lineup-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.show-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.show-card:hover,
.dj-card:hover,
.news-card:hover,
.event-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 60px rgba(255, 111, 31, 0.16);
  border-color: rgba(255, 191, 58, 0.22);
}

.show-image,
.thumb,
.insta-post {
  min-height: 14rem;
}

.gradient-1 { background: linear-gradient(135deg, rgba(255, 111, 31, 0.9), rgba(255, 191, 58, 0.35)); }
.gradient-2 { background: linear-gradient(135deg, rgba(36, 208, 108, 0.88), rgba(255, 191, 58, 0.26)); }
.gradient-3 { background: linear-gradient(135deg, rgba(255, 191, 58, 0.9), rgba(255, 111, 31, 0.22)); }
.gradient-4 { background: linear-gradient(135deg, rgba(36, 208, 108, 0.45), rgba(255, 111, 31, 0.85)); }

.show-content h3,
.news-card h3,
.feature-story h3,
.event-card h3,
.embed-card h3,
.social-feed h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.show-content {
  padding: 1.2rem;
}

.show-content p,
.show-content span,
.news-card p,
.embed-card p,
.lineup-show p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.lineup-day {
  padding: 1.5rem;
}

.lineup-day h3,
.lineup-show h4 {
  margin-top: 0;
}

.lineup-show h4 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.lineup-day > h3 {
  margin: 1rem 0 1.25rem;
}

.lineup-show {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lineup-show:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.lineup-time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 111, 31, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.lineup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.lineup-tags span {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.avatar-large {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.dj-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nickname {
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-row a:hover,
.site-footer a:hover {
  color: var(--gold);
  border-color: rgba(255, 191, 58, 0.35);
  transform: translateY(-2px);
}

.news-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-1 { background: linear-gradient(135deg, rgba(255, 111, 31, 0.9), rgba(255, 191, 58, 0.2)); }
.thumb-2 { background: linear-gradient(135deg, rgba(36, 208, 108, 0.7), rgba(255, 111, 31, 0.3)); }
.thumb-3 { background: linear-gradient(135deg, rgba(255, 191, 58, 0.8), rgba(36, 208, 108, 0.18)); }

.wide-ad {
  margin-top: 1.5rem;
  min-height: 8rem;
  place-content: center;
  text-align: center;
}

.advertise-wrap,
.social-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.benefits-list {
  margin: 1.4rem 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(36, 208, 108, 0.6);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-box {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box strong {
  display: block;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
}

.event-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.slider-track {
  position: relative;
  min-height: 16rem;
}

.event-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.event-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slider-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.post-1 { background: linear-gradient(135deg, rgba(255, 111, 31, 0.9), rgba(36, 208, 108, 0.18)); }
.post-2 { background: linear-gradient(135deg, rgba(255, 191, 58, 0.86), rgba(255, 111, 31, 0.2)); }
.post-3 { background: linear-gradient(135deg, rgba(36, 208, 108, 0.75), rgba(255, 191, 58, 0.22)); }
.post-4 { background: linear-gradient(135deg, rgba(255, 111, 31, 0.65), rgba(255, 191, 58, 0.35)); }

.embed-stack {
  display: grid;
  gap: 1rem;
}

.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.newsletter-form button {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  font-weight: 700;
}

.player-anchor {
  position: absolute;
  top: 0;
}

.now-playing-popup {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.85rem;
  align-items: start;
  width: min(24.5rem, calc(100% - 2rem));
  padding: 1rem 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  z-index: 1200;
  transform: translateY(150%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.now-playing-popup.show {
  transform: translateY(0);
}

.popup-pill {
  align-self: start;
  background: rgba(4, 127, 63, 0.45);
  color: #2dff83;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: none;
  border: 1px solid rgba(36, 208, 108, 0.16);
}

.popup-body {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.popup-body strong {
  font-size: 1.05rem;
}

.popup-body p {
  margin: 0;
  color: #f1ece2;
  font-size: 0.92rem;
  line-height: 1.3;
}

.popup-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.popup-live-btn {
  min-width: auto;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

.popup-volume {
  font-size: 0.76rem;
}

.popup-volume input[type="range"] {
  width: 4.8rem;
}

.popup-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  align-self: end;
  padding-bottom: 0.35rem;
}

.popup-visualizer span {
  width: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 191, 58, 0.18), rgba(36, 208, 108, 0.24));
  animation: equalize 1.2s ease-in-out infinite;
}

.popup-visualizer span:nth-child(1) { height: 1.3rem; }
.popup-visualizer span:nth-child(2) { height: 2.6rem; animation-delay: 0.15s; }
.popup-visualizer span:nth-child(3) { height: 3.5rem; animation-delay: 0.3s; }
.popup-visualizer span:nth-child(4) { height: 2.2rem; animation-delay: 0.45s; }

.popup-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: rotate(45deg);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.text-link {
  color: var(--gold);
}

@keyframes equalize {
  0%, 100% { transform: scaleY(0.75); }
  50% { transform: scaleY(1.2); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(36, 208, 108, 0.25); }
  50% { box-shadow: 0 0 34px rgba(255, 191, 58, 0.45); }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(24px) translateX(12px); }
}

@media (max-width: 1024px) {
  .hero-content,
  .show-grid,
  .dj-grid,
  .lineup-grid,
  .news-layout,
  .advertise-wrap,
  .social-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .brand-logo {
    height: 3.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .show-grid {
    grid-template-columns: 1fr;
  }

  .now-playing-popup {
    grid-template-columns: 1fr auto;
    width: calc(100% - 1.5rem);
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.9rem;
  }

  .popup-pill,
  .popup-visualizer {
    display: none;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .event-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
