/*
Theme Name: Suzys Music Theme Lets Go Vancouver BC
Author: Suzy Easton
Description: An '80s video game inspired music WordPress theme, thanks much.
Version: 3.0
*/

/* ====================== */
/*     BASE RETRO STYLES  */
/* ====================== */
:root {
  --primary-color: #00ff00;
  --secondary-color: #e60073;
  --accent-color: #ff0;
  --background-dark: #000;
  --background-medium: #111;
  --background-light: #222;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
.menu-item,
#bio-container,
.bio-content,
#site-footer {
  font-family: "Press Start 2P", cursive;
  background-color: var(--background-dark);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.4;
}

/* ====================== */
/*    RETRO SCREEN EFFECT */
/* ====================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    ),
    repeating-linear-gradient(
      to right,
      rgba(0, 255, 0, 0.05) 0,
      rgba(0, 255, 0, 0.05) 4px,
      rgba(0, 255, 0, 0.1) 4px,
      rgba(0, 255, 0, 0.1) 8px
    );
  z-index: 0;
  animation: screen-flicker 1s infinite;
}

@keyframes screen-flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.9;
  }
}

/* ====================== */
/*    BUTTON STYLES       */
/* ====================== */
.action-button,
.premium.cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
}

.action-button {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.action-button:hover {
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.action-button:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: scanline 2s infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Bio Panel */
.bio-panel {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bio-content {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
}

.whats-new-section {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.news-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 20px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ====================== */
/*    CARD EFFECTS       */
/* ====================== */
.game-card,
.riff-output {
  background: var(--background-medium);
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 255, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card:hover,
.riff-output:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 255, 0, 0.3);
}

/* ====================== */
/*    GAME UI ELEMENTS   */
/* ====================== */
.game-canvas {
  background: #eef;
  border: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
  margin: 20px 0;
}

.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.controls p {
  margin: 5px 0;
  color: var(--accent-color);
}

.scoreboard {
  text-align: center;
  font-family: "Press Start 2P", cursive;
  color: var(--accent-color);
  margin-top: 10px;
}

.game-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-bottom: 10px;
}

.team-display {
  font-family: "Press Start 2P", cursive;
  color: var(--accent-color);
}

.game-overlay .overlay-content {
  text-align: center;
}

.game-overlay button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  background: var(--primary-color);
  color: #000;
  font-family: "Press Start 2P", cursive;
  cursor: pointer;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.goal-animation {
  animation: goalPop 0.8s ease-out;
}

@keyframes goalPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ====================== */
/*    FEATURED CONTENT   */
/* ====================== */
.featured-item {
  background: var(--background-medium);
  border: 2px solid var(--primary-color);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.featured-item .action-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
  margin: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
}

.featured-item .action-button:hover {
  background: #ff1493;
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 255, 0, 0.3);
}

/* ====================== */
/*    VISITOR COUNTER   */
/* ====================== */
.visitor-counter {
  font-family: 'Press Start 2P', monospace;
  color: #00ff00;
  margin-top: 2rem;
  text-align: center;
  line-height: 1.6;
}

/* ====================== */
/*  TRACK ANALYZER PROMO  */
/* ====================== */
.track-analyzer-feature {
  position: relative;
  margin: 40px auto;
  padding: 25px 20px;
  max-width: 800px;
  text-align: center;
  background: var(--background-medium);
  border-radius: 8px;
  box-shadow: 0 0 10px var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.track-analyzer-feature::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, var(--accent-color) 0 5px, transparent 5px 10px) top/100% 4px repeat-x,
    repeating-linear-gradient(90deg, var(--accent-color) 0 5px, transparent 5px 10px) bottom/100% 4px repeat-x,
    repeating-linear-gradient(0deg,  var(--accent-color) 0 5px, transparent 5px 10px) left/4px 100% repeat-y,
    repeating-linear-gradient(0deg,  var(--accent-color) 0 5px, transparent 5px 10px) right/4px 100% repeat-y;
  animation: border-dance 4s linear infinite;
}

@keyframes border-dance {
  from {
    background-position: 0 0, 0 100%, 0 0, 100% 0;
  }
  to {
    background-position: 10px 0, -10px 100%, 0 -10px, 100% 10px;
  }
}

.track-analyzer-feature .pixel-button.analyzer-cta {
  margin-top: 15px;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.track-analyzer-feature .pixel-button.analyzer-cta:hover {
  box-shadow: 0 0 8px var(--accent-color);
}

/*  RIFF GENERATOR PROMO  */
.riff-generator-feature {
  position: relative;
  margin: 40px auto;
  padding: 25px 20px;
  max-width: 800px;
  text-align: center;
  background: var(--background-medium);
  border-radius: 8px;
  box-shadow: 0 0 10px var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.riff-generator-feature::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, var(--secondary-color) 0 5px, transparent 5px 10px) top/100% 4px repeat-x,
    repeating-linear-gradient(90deg, var(--secondary-color) 0 5px, transparent 5px 10px) bottom/100% 4px repeat-x,
    repeating-linear-gradient(0deg,  var(--secondary-color) 0 5px, transparent 5px 10px) left/4px 100% repeat-y,
    repeating-linear-gradient(0deg,  var(--secondary-color) 0 5px, transparent 5px 10px) right/4px 100% repeat-y;
  animation: border-dance 4s linear infinite;
}

.riff-generator-feature .pixel-button.riff-cta {
  margin-top: 15px;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.riff-generator-feature .pixel-button.riff-cta:hover {
  box-shadow: 0 0 8px var(--secondary-color);
}

@media (max-width: 600px) {
  .track-analyzer-feature,
  .riff-generator-feature,
  .party-announcement {
    margin: 20px 10px;
    padding: 15px;
  }
}

/* ====================== */
/*    SUPPORT SECTION    */
/* ====================== */
.support-section {
  background: linear-gradient(
    45deg,
    var(--background-medium),
    var(--background-light)
  );
  padding: 40px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  margin: 40px 0;
}

.support-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--primary-color);
}

/* ====================== */
/*    ALBINI Q&A STYLES   */
/* ====================== */
.albini-qa-page {
  background: var(--background-medium);
  border: 2px solid var(--secondary-color);
  padding: 2.5rem;
  border-radius: 8px;
  margin: 2.5rem 0;
}

.prompt-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: var(--background-light);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prompt-button:hover {
  background: var(--primary-color);
  color: var(--background-dark);
  transform: scale(1.05);
}

.prompt-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Albini Q&A layout */
.albini-qa-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.qa-input {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 600px;
  margin-bottom: 1rem;
}

.qa-input textarea,
.qa-input input,
.qa-input button {
  width: 90%;
  max-width: 500px;
  font-size: 1rem;
  box-sizing: border-box;
}

.qa-input textarea,
.qa-input input {
  font-size: 1rem;
  min-height: 4rem;
}

.qa-response {
  width: 90%;
  max-width: 600px;
}

@media (max-width: 600px) {
  .qa-input {
    flex-direction: column;
  }
}

.response-container {
  background: var(--background-light);
  border: 2px solid var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.albini-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 10px;
}
/* Albini Q&A terminal response */
.qa-response p {
  font-family: 'Press Start 2P', monospace;
  color: #00ff00;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  white-space: pre-wrap;
}

.albini-example {
  font-family: 'Press Start 2P', monospace;
  color: #00ff00;
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.6;
}

/* ====================== */
/*    NEWSLETTER FORM    */
/* ====================== */
.newsletter {
  background: var(--background-medium);
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  margin: 40px 0;
}

.newsletter input,
.newsletter button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 2px solid var(--primary-color);
  background: var(--background-light);
  color: var(--primary-color);
}

.newsletter button {
  background: var(--primary-color);
  color: var(--background-dark);
  cursor: pointer;
}

.newsletter button:hover {
  background: var(--secondary-color);
}

/* ====================== */
/* ====================== */
/*        HERO AREA       */
/* ====================== */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}
.hero-img,
.hero-image img {
  width: 80vw; /* fluid on phones */
  max-width: 300px; /* cap on desktop */
  border: 4px solid #00ff00;
  box-shadow: 0 0 18px #00ff00;
  margin-top: 1rem;
  display: inline-block;
}

/* ====================== */
/*   GRID MENU & BUTTONS  */
/* ====================== */
#menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1rem;
  text-align: center;
}

.menu-item {
  position: relative;
  background-color: #111;
  color: #00ff00;
  border: 4px solid #00ff00;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  white-space: normal;
  transition:
    transform 0.2s,
    background-color 0.3s,
    color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-item::before {
  content: "▶";
  position: absolute;
  left: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}
.menu-item:hover {
  background-color: #00ff00;
  color: #000;
  transform: scale(1.05);
  animation: glitch 0.3s ease-in-out;
}
.menu-item:hover::before {
  opacity: 1;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0);
  }
}

/* ====================== */
/*   ALBINI Q&A PROMO     */
/* ====================== */
.menu-item.albini-menu {
  border-color: #e60073;
  color: #e60073;
  animation: flicker 4s infinite both;
}
.menu-item.albini-menu::before {
  content: "🔥 Albini Q&A 🔥";
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: #e60073;
  color: #000;
  padding: 2px 6px;
  font-size: 0.75rem;
  border: 2px solid #e60073;
  border-radius: 3px;
  white-space: nowrap;
  animation: pulseHot 1s infinite alternate;
}
@keyframes flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
  }
}
@keyframes pulseHot {
  from {
    box-shadow: 0 0 5px #e60073;
  }
  to {
    box-shadow: 0 0 20px #e60073;
  }
}

/* ====================== */
/*   HEADER & LOGO AREA   */
/* ====================== */
#retro-game-header {
  text-align: center;
  background-color: #111;
  padding: 20px;
  border-bottom: 4px solid #00ff00;
  margin-bottom: 20px;
}
#stacked-nerd-title,
#sparkly-name,
.albini-title,
#home-title {
  color: #0f0;
  font-size: clamp(1.2rem, 5vw, 2rem);
  text-shadow:
    0 0 4px #0f0,
    0 0 8px #0f0,
    0 0 12px #0f0;
}
@keyframes neonPulse {
  from {
    text-shadow:
      0 0 8px #0f0,
      0 0 16px #0f0,
      0 0 24px #0f0;
  }
  to {
    text-shadow:
      0 0 16px #0f0,
      0 0 32px #0f0,
      0 0 48px #0f0;
  }
}
@keyframes flickerSlow {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.8;
  }
}

/* ====================== */
/*  STARFIELD BACKGROUND  */
/* ====================== */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: #000;
}
header,
main,
footer,
.menu-item,
.albini-qa-page {
  position: relative;
  z-index: 1;
}

/* ====================== */
/*  BIO & MUSIC EMBEDS    */
/* ====================== */
#bio-container,
.bio-content {
  color: #00ff00;
  letter-spacing: 2px;
  line-height: 1.6;
  padding: 20px;
  font-size: 18px;
  white-space: pre-wrap;
  overflow-y: auto;
}
#bio-container {
  height: 400px;
}
#bio-container::-webkit-scrollbar,
.bio-content::-webkit-scrollbar {
  width: 12px;
}
#bio-container::-webkit-scrollbar-track,
.bio-content::-webkit-scrollbar-track {
  background: #000;
}
#bio-container::-webkit-scrollbar-thumb,
.bio-content::-webkit-scrollbar-thumb {
  background-color: #00ff00;
  border-radius: 20px;
  border: 3px solid #000;
}
.music-embeds iframe {
  border: 2px solid #00ff00;
  background-color: #111;
  margin: 20px 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.music-embeds iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ff00;
}

/* ====================== */
/*    HOMEPAGE HERO       */
/* ====================== */
.hero-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1rem 2rem;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2rem;
}

.hero-section h2 {
  font-size: 1.25rem;
}
.tagline {
  margin: 20px auto;
  max-width: 800px;
}

.retro-title {
  font-family: "Press Start 2P", cursive;
  -webkit-font-smoothing: none;
  font-smooth: never;
  text-rendering: optimizeSpeed;
  color: var(--primary-color);
  text-shadow: 0 0 4px var(--primary-color);
  margin: 0.5rem 0;
  line-height: 1.2;
}

.glow-lite {
  color: var(--primary-color);
  text-shadow: 0 0 3px rgba(0,255,0,0.8);
}

.hero-section h1.color-cycle {
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ff004c, #ffcc00, #00ffff, #ff004c);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow:
    0 0 4px #ff004c,
    0 0 8px #ffcc00,
    0 0 12px #00ffff;
  animation:
    gradientShift 8s linear infinite,
    neonPulse 1.5s ease-in-out infinite alternate,
    flickerSlow 3s infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-section .pixel-intro {
  max-width: 36em;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: center;
}
.hero-section .pixel-intro p {
  margin-bottom: 1.5rem;
}

.lousy-outages-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.lousy-outages-page h1 {
  margin-bottom: 1.5rem;
}

.lousy-outages-page .lousy-outages-board {
  font-family: 'Press Start 2P', monospace;
}


body {
  padding-top: 60px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 2px solid var(--accent-color);
  z-index: 10000;
}

.main-header .logo {
  font-family: "Press Start 2P", cursive;
  font-size: 0.85rem;
  color: var(--accent-color);
  text-decoration: none;
}

.main-header .logo:hover {
  text-shadow: 0 0 4px var(--accent-color);
}

.pixel-font {
  font-family: "Press Start 2P", cursive;
  -webkit-font-smoothing: none;
  font-smooth: never;
  text-rendering: optimizeSpeed;
}
.terminal-line {
  color: var(--accent-color);
  margin: 10px 0 30px;
  animation: blinkCursor 1s steps(2, start) infinite;
}
@keyframes blinkCursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.arcade-subtext {
  font-family: "Press Start 2P", monospace;
  color: #ffcc00;
  opacity: 0.8;
  animation: pulse 3s infinite ease-in-out;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

.puck-icon {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 2.5rem;
  animation: bounce 2s infinite;
}
.puck-icon:hover {
  animation: bounceHover 0.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes bounceHover {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
}

/* ====================== */
/*   BUTTON CLUSTERS      */
/* ====================== */
.button-cluster {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.button-group {
  text-align: center;
}
.group-title {
  margin-bottom: 10px;
  color: var(--accent-color);
}
.group-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pixel-button {
  background: #000;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  font-family: "Press Start 2P", cursive;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pixel-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px var(--accent-color);
  animation: glitch 0.3s ease-in-out;
}

/* ====================== */
/*    FOOTER MARQUEE      */
/* ====================== */
.footer-marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  border-top: 2px solid var(--primary-color);
}
.footer-marquee span {
  display: inline-block;
  padding: 10px;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}

/* ================================== */
/*   NOW LISTENING & ADVOCACY STYLES  */
/* ================================== */
.now-listening {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#now-listening-widget img {
  max-width: 80px;
  border: 2px solid #00ff00;
  display: block;
  margin: 0 auto 10px;
}

.listening-inner {
  font-family: "Press Start 2P", monospace;
  color: #00ff00;
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

.now-listening-caption {
  margin-top: 10px;
  margin-bottom: 15px;
}

.info-callout {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--secondary-color);
  padding: 15px;
  margin-top: 10px;
  text-align: left;
}

.info-callout p {
  margin: 0 0 10px;
}

.now-listening::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 255, 0, 0.2) 0,
    rgba(0, 255, 0, 0.2) 2px,
    transparent 2px,
    transparent 4px
  );
  animation: equalizer 1s linear infinite;
  pointer-events: none;
}

@keyframes equalizer {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.advocacy-section {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 10px;
  text-align: center;
}
.crt-block {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at top left, rgba(0, 64, 0, 0.6), rgba(0, 16, 0, 0.95));
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 12px rgba(0, 255, 170, 0.25), inset 0 0 6px rgba(0, 255, 170, 0.15);
  color: var(--primary-color);
  overflow: hidden;
}

.crt-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 255, 150, 0.08) 0,
    rgba(0, 255, 150, 0.08) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.party-announcement {
  margin: 40px auto;
  padding: 24px 28px;
  max-width: 780px;
  text-align: left;
  border-radius: 12px;
}

.party-announcement h2 {
  font-family: 'Press Start 2P', monospace;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #b6ffd7;
}

.party-announcement p {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.8;
  color: #e8ffee;
  margin: 0;
}

.party-announcement a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

.party-announcement a:hover,
.party-announcement a:focus {
  text-decoration: underline;
  text-shadow: 0 0 6px rgba(0, 255, 190, 0.6);
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ====================== */
/*    MOBILE ADJUSTMENTS  */
/* ====================== */
@media (max-width: 480px) {
  /* hide CRT scan‑lines & stars on small devices */
  body::before {
    display: none;
  }
  #starfield {
    display: none;
  }

  #retro-game-header {
    padding: 1rem 0;
    margin-bottom: 0.5rem;
  }

  #menu-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem;
  }
  .menu-item {
    font-size: 14px;
    padding: 10px 6px;
  }

  #stacked-nerd-title,
  #sparkly-name,
  .albini-title,
  #home-title {
    text-shadow:
      0 0 2px #0f0,
      0 0 4px #0f0;
    animation: none;
  }

  .hero-img,
  .hero-image img {
    width: 90vw;
    border-width: 2px;
    box-shadow: 0 0 8px #00ff00;
  }
}

@media (max-width: 600px) {
  .hero-section .pixel-intro {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
}

/* =========================== */
/*  TRACK ANALYZER ENHANCEMENTS */
/* =========================== */
.intro-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  margin-bottom: 1rem;
  border: 2px dashed var(--accent-color);
}

.analyzer-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 2px solid var(--accent-color);
  z-index: 5000;
}
.analyzer-header .header-actions {
  display: flex;
  gap: 10px;
}
.track-analyzer {
  margin-top: 70px;
  position: relative;
}
#analyzer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}
#loading-message .loading-dots::after {
  content: '...';
  animation: dots 1s steps(5, end) infinite;
}
@keyframes dots {
  0%, 20% { color: transparent; }
  40% { color: currentColor; }
  60% { color: currentColor; }
  80%, 100% { color: transparent; }
}

.title-flicker {
  animation: titleFlicker 2s steps(2, start) forwards;
}
@keyframes titleFlicker {
  0%,20%,40% { opacity: 0; }
  10%,30%,50%,100% { opacity: 1; }
}
.hacking {
  font-family: "Courier New", monospace;
  color: #0f0;
}
.glow {
  animation: glowDrop 1s ease-out forwards;
}
@keyframes glowDrop {
  from { box-shadow: 0 0 2px transparent; }
  to   { box-shadow: 0 0 15px var(--accent-color); }
}
#secret-track {
  margin-bottom: 10px;
  display: block;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0;
  font-size: 1.2rem;
  z-index: 6000;
}
.error-message {
  background: #330000;
  color: #ff6666;
  padding: 10px;
  border: 2px solid #ff6666;
  border-radius: 6px;
  text-align: center;
  margin-top: 10px;
}


/* ====================== */
/*   Riff Generator App   */
/* ====================== */
.riff-generator {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.riff-generator select,
.riff-generator input,
.riff-generator button {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
}
.riff-generator button {
  background: var(--primary-color);
  color: #000;
  cursor: pointer;
}
.producer-tip {
  background: var(--background-medium);
  padding: 10px;
  border-left: 4px solid var(--accent-color);
}
