/* ============================================================
   MUCKBANG TWANG — Official Site Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Barlow:wght@400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* --- Custom Properties --- */
:root {
  --bg: #0a0a0a;
  --bg-light: #141414;
  --bg-warm: #1a1208;
  --neon-pink: #ff2d7b;
  --neon-gold: #ffb700;
  --neon-blue: #00d4ff;
  --text: #e8e0d4;
  --text-dim: #8a8278;
  --text-bright: #ffffff;

  --glow-pink: 0 0 10px #ff2d7b, 0 0 40px #ff2d7b66, 0 0 80px #ff2d7b33;
  --glow-gold: 0 0 10px #ffb700, 0 0 40px #ffb70066, 0 0 80px #ffb70033;
  --glow-blue: 0 0 10px #00d4ff, 0 0 40px #00d4ff66, 0 0 80px #00d4ff33;

  --font-display: 'Bungee', cursive;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --section-padding: 100px 20px;
  --max-width: 1200px;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
}

/* --- Base Section Styles --- */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.section-title--pink {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.section-title--gold {
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
}

.section-title--blue {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
}

/* --- Neon Button --- */
.btn-neon {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  background: transparent;
  transition: all var(--transition-fast);
}

.btn-neon:hover {
  background: var(--neon-pink);
  color: var(--bg);
  box-shadow: var(--glow-pink);
}

.btn-neon--gold {
  border-color: var(--neon-gold);
  color: var(--neon-gold);
}

.btn-neon--gold:hover {
  background: var(--neon-gold);
  color: var(--bg);
  box-shadow: var(--glow-gold);
}

.btn-neon--blue {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

.btn-neon--blue:hover {
  background: var(--neon-blue);
  color: var(--bg);
  box-shadow: var(--glow-blue);
}

/* --- Grain Overlay --- */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.15"/></svg>');
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Keyframes --- */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

@keyframes pulse-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* --- Coming Soon Badge --- */
.coming-soon {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  border: 1px solid var(--text-dim);
  opacity: 0.7;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 45, 123, 0.15);
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(255, 45, 123, 0.4);
  box-shadow: 0 2px 20px rgba(255, 45, 123, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 45, 123, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/images/crowd-bg.png') center center / cover no-repeat;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Dark overlay over crowd photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 25%),
    rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Neon logo image */
.hero-logo {
  max-width: clamp(280px, 50vw, 600px);
  height: auto;
  margin: 0 auto 30px;
  animation: neon-breathe 6s ease-in-out infinite;
  filter:
    drop-shadow(0 0 15px rgba(255, 45, 123, 0.4))
    drop-shadow(0 0 40px rgba(255, 45, 123, 0.2))
    drop-shadow(0 0 80px rgba(255, 45, 123, 0.1));
}


@keyframes neon-breathe {
  0%, 100% {
    filter:
      drop-shadow(0 0 15px rgba(255, 45, 123, 0.4))
      drop-shadow(0 0 40px rgba(255, 45, 123, 0.2))
      drop-shadow(0 0 80px rgba(255, 45, 123, 0.1));
  }
  50% {
    filter:
      drop-shadow(0 0 20px rgba(255, 45, 123, 0.5))
      drop-shadow(0 0 50px rgba(255, 45, 123, 0.25))
      drop-shadow(0 0 90px rgba(255, 45, 123, 0.12));
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-dim);
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.hero-font-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.hero-cta {
  font-size: 1.3rem;
  padding: 18px 50px;
}

/* ============================================================
   MUSIC
   ============================================================ */
.music { background: var(--bg); }


.album-card {
  background: var(--bg-light);
  border: 1px solid rgba(255, 45, 123, 0.2);
  padding: 20px;
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.album-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.15);
}

.album-art {
  margin-bottom: 20px;
  overflow: hidden;
  max-height: 300px;
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.album-art-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a12, #0d0d0d);
  border: 2px solid rgba(255, 45, 123, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-art-placeholder.live {
  background: linear-gradient(135deg, #1a1200, #0d0d0d);
  border-color: rgba(255, 183, 0, 0.3);
}

.album-art-placeholder.upcoming {
  background: linear-gradient(135deg, #0a0a1a, #0d0d0d);
  border-color: rgba(0, 212, 255, 0.3);
}

.album-art-icon { font-size: 4rem; opacity: 0.3; }

.album-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-pink);
  margin-bottom: 5px;
}

.album-type {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.album-desc {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.album-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Two-column grid: top row is debut + single */
.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Live at Gillette — full width center card */
.album-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 30px;
}

.album-card--wide .album-art {
  max-height: 420px;
}

.album-card--wide .album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card--wide-info {
  display: flex;
  flex-direction: column;
}

.album-streaming-now {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

/* Mystery album — centered below */
.album-card--mystery {
  grid-column: 1 / -1;
  max-width: 350px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .album-card--wide {
    grid-template-columns: 1fr;
  }
  .album-card--mystery {
    max-width: 100%;
  }
}

/* Tracklist */
.tracklist {
  margin-top: 10px;
}

.track {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.track:hover {
  background: rgba(255, 45, 123, 0.05);
}

.track.active {
  background: rgba(255, 45, 123, 0.1);
}

.track.active .track-name {
  color: var(--neon-pink);
}

.track-num {
  width: 30px;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  flex-shrink: 0;
}

.track-name {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0 15px;
}

.track-play {
  width: 32px;
  height: 32px;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.track-play:hover {
  background: var(--neon-pink);
  color: var(--bg);
}

.track.active .track-play {
  background: var(--neon-pink);
  color: var(--bg);
}

/* Now Playing Bar */
.now-playing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 45, 123, 0.2);
  margin-top: 10px;
}

.now-playing.hidden {
  display: none;
}

.now-playing-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-pink);
  white-space: nowrap;
  min-width: 100px;
}

.now-playing-seek {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.now-playing-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 6px rgba(255, 45, 123, 0.5);
  cursor: pointer;
}

.now-playing-time {
  font-size: 0.8rem;
  color: var(--text-dim);
  min-width: 40px;
  text-align: right;
}

/* ============================================================
   THE LEGEND (BIO)
   ============================================================ */
.legend {
  background: var(--bg-light);
  overflow: hidden;
}

.legend-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.legend-poster {
  position: relative;
  text-align: center;
}

.legend-photo {
  aspect-ratio: 3/4;
  border: 3px solid var(--neon-gold);
  box-shadow: 0 0 20px rgba(255, 183, 0, 0.2);
  overflow: hidden;
}
.legend-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legend-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1208 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--neon-gold);
  opacity: 0.3;
}

.legend-wanted {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
  letter-spacing: 8px;
  margin-top: 15px;
  animation: flicker 5s linear infinite;
}

.legend-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legend-text p { margin-bottom: 20px; }

.legend-intro {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--neon-gold);
  line-height: 1.7;
}

.legend-closing {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon-pink);
}

@media (max-width: 768px) {
  .legend-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .legend-poster {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ============================================================
   GO GET YOURSELF A DOG
   ============================================================ */
.dog {
  background: var(--bg-warm);
  border-top: 1px solid rgba(255, 183, 0, 0.15);
  border-bottom: 1px solid rgba(255, 183, 0, 0.15);
}

.dog-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.dog-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}
.dog-image img {
  width: 100%;
  border-radius: 12px;
}

.dog-player {
  margin-bottom: 40px;
}

.dog-audio {
  width: 100%;
  max-width: 500px;
  height: 40px;
  border-radius: 20px;
}

.dog-text { margin-bottom: 40px; }

.dog-intro {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(255, 183, 0, 0.3);
  margin-bottom: 20px;
}

.dog-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.dog-text p:nth-child(2) {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}

.dog-cta-text {
  font-weight: 600;
  color: var(--neon-gold);
}

.dog-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   MERCH
   ============================================================ */
.merch { background: var(--bg); }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.merch-coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.merch-coming-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  margin-bottom: 15px;
}

.merch-coming-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.product-card {
  background: var(--bg-light);
  border: 1px solid rgba(255, 45, 123, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-medium);
}

.product-card:hover { border-color: var(--neon-pink); }

.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a0a12, #0d0d0d);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon-pink);
  margin-bottom: 5px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-gold);
  margin-bottom: 15px;
}

.product-size-select {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--text-dim);
  color: var(--text-dim);
  background: transparent;
  transition: all var(--transition-fast);
}

.size-btn:hover,
.size-btn.selected {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

.product-add-btn {
  width: 100%;
  padding: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  background: transparent;
  transition: all var(--transition-fast);
}

.product-add-btn:hover {
  background: var(--neon-pink);
  color: var(--bg);
  box-shadow: var(--glow-pink);
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-light);
  border-left: 1px solid rgba(255, 45, 123, 0.3);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 45, 123, 0.2);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-pink);
}

.cart-close {
  font-size: 2rem;
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.cart-close:hover { color: var(--neon-pink); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.cart-item-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.cart-item-price {
  font-family: var(--font-display);
  color: var(--neon-gold);
  margin: 0 15px;
}

.cart-item-remove {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover { color: var(--neon-pink); }

.cart-empty {
  text-align: center;
  color: var(--text-dim);
  padding: 40px 0;
  font-style: italic;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 45, 123, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neon-gold);
  margin-bottom: 15px;
}

.cart-checkout {
  width: 100%;
  text-align: center;
}

/* Floating Cart Button */
.cart-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon-pink);
  color: var(--bg);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  box-shadow: var(--glow-pink);
  transition: transform var(--transition-fast);
}

.cart-fab:hover { transform: scale(1.1); }
.cart-fab.hidden { display: none; }

.cart-fab-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--neon-gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   TOUR
   ============================================================ */
.tour { background: var(--bg-light); }

.tour-tbd {
  text-align: center;
  padding: 60px 20px;
}

.tour-tbd-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  margin-bottom: 15px;
}

.tour-tbd-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.tour-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.tour-date-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tour-day {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neon-blue);
  min-width: 100px;
}

.tour-venue {
  font-weight: 600;
  font-size: 1.05rem;
}

.tour-city {
  color: var(--text-dim);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-date {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .tour-date-info {
    flex-direction: column;
    gap: 5px;
  }
}

/* ============================================================
   THE ROWDY LIST
   ============================================================ */
.rowdy-list { background: var(--bg); }

.rowdy-content {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.rowdy-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  line-height: 1.7;
}

.rowdy-form-row {
  display: flex;
  gap: 0;
}

.rowdy-input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-light);
  border: 2px solid rgba(255, 45, 123, 0.3);
  border-right: none;
  outline: none;
  transition: border-color var(--transition-fast);
}

.rowdy-input::placeholder { color: var(--text-dim); }
.rowdy-input:focus { border-color: var(--neon-pink); }

.rowdy-submit { border-left: none; white-space: nowrap; }

.rowdy-status {
  margin-top: 15px;
  font-size: 0.9rem;
  min-height: 1.5em;
}

.rowdy-status.success { color: var(--neon-gold); }
.rowdy-status.error { color: var(--neon-pink); }

@media (max-width: 500px) {
  .rowdy-form-row { flex-direction: column; }
  .rowdy-input {
    border-right: 2px solid rgba(255, 45, 123, 0.3);
    border-bottom: none;
  }
  .rowdy-input:focus { border-color: var(--neon-pink); }
  .rowdy-submit { border-left: 2px solid var(--neon-pink); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 45, 123, 0.1);
  background: var(--bg);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.footer-social-link {
  color: var(--text-dim);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--neon-pink);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 15px;
}

.footer-top {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.footer-top:hover { color: var(--neon-pink); }

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 20px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 15px; }
  .section-title { margin-bottom: 40px; }
  .hero { min-height: 100svh; }
  .dog-links {
    flex-direction: column;
    align-items: center;
  }
  .dog-links .btn-neon {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .btn-neon { padding: 12px 24px; font-size: 0.95rem; }
}

/* Kill heavy glow on mobile — text becomes unreadable */
@media (max-width: 768px) {
  :root {
    --glow-pink: 0 0 6px #ff2d7b99;
    --glow-gold: 0 0 6px #ffb70099;
    --glow-blue: 0 0 6px #00d4ff99;
  }
}

section + section { border-top: 1px solid rgba(255, 255, 255, 0.03); }

::selection {
  background: var(--neon-pink);
  color: var(--bg);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 45, 123, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 45, 123, 0.6); }
