/* ===============================================
   SYNTHWAVE / 80s RETRO LANDING PAGE
   =============================================== */

/* Import Google Font - Orbitron for that retro-futuristic look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Russo+One&display=swap');

/* CSS Variables - Neon Color Palette */
:root {
  --neon-pink: #ff00ff;
  --neon-cyan: #00ffff;
  --neon-purple: #9d00ff;
  --neon-yellow: #ffff00;
  --neon-orange: #ff6600;
  --hot-pink: #ff1493;
  --deep-purple: #1a0533;
  --darker-purple: #0d001a;
  --sun-yellow: #ffdd00;
  --sun-orange: #ff8800;
  --sun-pink: #ff3366;
  --grid-color: #ff00ff;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Orbitron', monospace;
  background: linear-gradient(180deg,
      var(--darker-purple) 0%,
      var(--deep-purple) 30%,
      #2d1b4e 60%,
      #1a0533 100%);
  min-height: 100vh;
  color: white;
}

/* Navigation Bar for Demo Page */
.nav-bar-demo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 0, 26, 0.95);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  border-bottom: 2px solid var(--neon-purple);
  z-index: 10000;
  flex-wrap: wrap;
}

.nav-link-demo {
  color: var(--neon-cyan);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--neon-purple);
  border-radius: 15px;
  font-size: 0.75rem;
  font-family: 'Russo One', sans-serif;
  transition: all 0.3s;
}

.nav-link-demo:hover {
  background: var(--neon-purple);
  color: white;
}

.nav-link-demo.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: white;
}

@media (max-width: 768px) {
  .nav-bar-demo {
    padding: 0.5rem;
    gap: 0.4rem;
  }

  .nav-link-demo {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Main Container */
.synthwave-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===============================================
   PERSPECTIVE GRID
   =============================================== */
.grid-perspective {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  perspective: 400px;
  overflow: hidden;
}

.grid-container {
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  transform: rotateX(75deg);
  background: transparent;
}

.grid-lines {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 2s linear infinite;
  opacity: 0.6;
  box-shadow:
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-pink);
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

/* ===============================================
   RETRO SUN
   =============================================== */
.sun-container {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sun {
  width: 280px;
  height: 280px;
  background: linear-gradient(180deg,
      var(--sun-yellow) 0%,
      var(--sun-orange) 40%,
      var(--sun-pink) 70%,
      var(--neon-purple) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow:
    0 0 60px var(--sun-orange),
    0 0 100px var(--sun-pink),
    0 0 150px var(--neon-purple);
  overflow: hidden;
  animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {

  0%,
  100% {
    box-shadow:
      0 0 60px var(--sun-orange),
      0 0 100px var(--sun-pink),
      0 0 150px var(--neon-purple);
  }

  50% {
    box-shadow:
      0 0 80px var(--sun-orange),
      0 0 130px var(--sun-pink),
      0 0 200px var(--neon-purple);
  }
}

.sun-line {
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--deep-purple);
  left: 0;
}

.sun-line:nth-child(1) {
  top: 55%;
}

.sun-line:nth-child(2) {
  top: 62%;
  height: 10px;
}

.sun-line:nth-child(3) {
  top: 70%;
  height: 12px;
}

.sun-line:nth-child(4) {
  top: 78%;
  height: 14px;
}

.sun-line:nth-child(5) {
  top: 85%;
  height: 16px;
}

.sun-line:nth-child(6) {
  top: 91%;
  height: 18px;
}

.sun-line:nth-child(7) {
  top: 96%;
  height: 20px;
}

/* ===============================================
   TRIANGLE DECORATION
   =============================================== */
.triangle-container {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid transparent;
  position: relative;
}

.triangle::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid transparent;
  left: -150px;
  top: 0;
  border-bottom-color: transparent;
  outline: 3px solid var(--neon-cyan);
  outline-offset: -3px;
  filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 20px var(--neon-cyan));
  opacity: 0;
}

/* ===============================================
   MAIN CONTENT
   =============================================== */
.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  margin-top: 15vh;
}

.neon-title {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.title-80s {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 30px var(--neon-cyan));
  text-shadow: none;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-retro {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px var(--neon-pink)) drop-shadow(0 0 30px var(--neon-pink));
  animation: titleGlow2 2s ease-in-out infinite alternate;
  animation-delay: 1s;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 10px var(--neon-cyan)) drop-shadow(0 0 30px var(--neon-cyan));
  }

  100% {
    filter: drop-shadow(0 0 20px var(--neon-cyan)) drop-shadow(0 0 50px var(--neon-cyan)) drop-shadow(0 0 80px var(--neon-cyan));
  }
}

@keyframes titleGlow2 {
  0% {
    filter: drop-shadow(0 0 10px var(--neon-pink)) drop-shadow(0 0 30px var(--neon-pink));
  }

  100% {
    filter: drop-shadow(0 0 20px var(--neon-pink)) drop-shadow(0 0 50px var(--neon-pink)) drop-shadow(0 0 80px var(--neon-pink));
  }
}

.tagline {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan);
}

/* ===============================================
   CTA BUTTONS
   =============================================== */
.cta-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Railslove Links */
.railslove-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1rem;
}

.rl-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  background: rgba(157, 0, 255, 0.1);
  transition: all 0.3s ease;
}

.rl-link:hover {
  background: var(--neon-purple);
  color: white;
  box-shadow: 0 0 20px var(--neon-purple);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .railslove-links {
    gap: 0.5rem;
  }

  .rl-link {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

.neon-button {
  position: relative;
  padding: 1rem 3rem;
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.neon-button.primary {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow:
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink),
    inset 0 0 10px rgba(255, 0, 255, 0.3);
}

.neon-button.primary:hover {
  background: var(--neon-pink);
  color: var(--deep-purple);
  box-shadow:
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-pink),
    0 0 60px var(--neon-pink),
    inset 0 0 20px rgba(255, 0, 255, 0.5);
  transform: translateY(-3px);
}

.neon-button.secondary {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    inset 0 0 10px rgba(0, 255, 255, 0.3);
}

.neon-button.secondary:hover {
  background: var(--neon-cyan);
  color: var(--deep-purple);
  box-shadow:
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-cyan),
    0 0 60px var(--neon-cyan),
    inset 0 0 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-3px);
}

.button-text {
  position: relative;
  z-index: 1;
}

/* ===============================================
   FEATURE CARDS
   =============================================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  padding: 0 2rem;
}

.feature-card {
  background: rgba(26, 5, 51, 0.8);
  border: 2px solid var(--neon-purple);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: var(--neon-pink);
  box-shadow:
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-purple),
    inset 0 0 30px rgba(157, 0, 255, 0.2);
  transform: translateY(-10px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.feature-card p {
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===============================================
   CHROME BAR (Footer decoration)
   =============================================== */
.chrome-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg,
      var(--neon-pink),
      var(--neon-purple),
      var(--neon-cyan),
      var(--neon-pink));
  padding: 0.8rem 0;
  overflow: hidden;
  z-index: 100;
}

.chrome-text {
  display: inline-block;
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  color: var(--deep-purple);
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===============================================
   SCANLINES OVERLAY (CRT Effect)
   =============================================== */
.synthwave-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.05) 0px,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 2px);
  pointer-events: none;
  z-index: 1000;
}

/* ===============================================
   ADDITIONAL GLOW EFFECTS
   =============================================== */
@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 768px) {
  .sun {
    width: 180px;
    height: 180px;
  }

  .content {
    margin-top: 10vh;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .neon-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sun {
    width: 140px;
    height: 140px;
  }

  .tagline {
    letter-spacing: 0.1em;
  }
}

/* ===============================================
   FROGGER GAME SECTION
   =============================================== */
.game-section {
  margin-top: 4rem;
  margin-bottom: 6rem;
  text-align: center;
}

.game-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-cyan);
  margin-bottom: 0.5rem;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.game-subtitle {
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.game-wrapper {
  position: relative;
  display: inline-block;
  border: 4px solid var(--neon-pink);
  box-shadow:
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-purple),
    inset 0 0 20px rgba(255, 0, 255, 0.2);
  background: rgba(13, 0, 26, 0.9);
}

#frogger-canvas {
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 0, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.game-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

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

.overlay-content h3 {
  font-size: 2rem;
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan);
  margin-bottom: 0.5rem;
  animation: flicker 1s ease-in-out infinite;
}

.overlay-content p {
  font-family: 'Russo One', sans-serif;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow);
  padding: 0.5rem 1rem;
  border: 2px solid var(--neon-purple);
  background: rgba(26, 5, 51, 0.8);
}

@media (max-width: 480px) {
  .game-wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  #frogger-canvas {
    max-width: 100%;
    height: auto;
  }

  .game-stats {
    gap: 0.5rem;
  }

  .stat {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ===============================================
   DJ MIXER SECTION
   =============================================== */
.dj-section {
  margin-top: 4rem;
  margin-bottom: 8rem;
  text-align: center;
  padding: 0 1rem;
}

.dj-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--neon-pink);
  text-shadow:
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-pink);
  margin-bottom: 0.5rem;
}

.dj-subtitle {
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  margin-bottom: 2rem;
}

.dj-mixer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Deck styles */
.deck {
  background: linear-gradient(180deg, #1a0533 0%, #0d001a 100%);
  border: 3px solid var(--neon-purple);
  padding: 1rem;
  min-width: 280px;
  box-shadow:
    0 0 20px var(--neon-purple),
    inset 0 0 30px rgba(157, 0, 255, 0.1);
}

.deck-a {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan), inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.deck-b {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink), inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.deck-label {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.deck-a .deck-label {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.deck-b .deck-label {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

/* Turntable */
.turntable {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
}

.platter {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 50%;
  border: 4px solid #333;
  position: relative;
  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.vinyl {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #111;
  border-radius: 50%;
  border: 2px solid #222;
}

.vinyl.spinning {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  color: white;
  font-size: 1.2rem;
}

.vinyl-grooves {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid #333;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px #222,
    inset 0 0 0 10px #1a1a1a,
    inset 0 0 0 15px #222,
    inset 0 0 0 20px #1a1a1a,
    inset 0 0 0 25px #222;
}

.tonearm {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 60px;
  height: 8px;
  background: linear-gradient(90deg, #666, #999, #666);
  transform: rotate(25deg);
  transform-origin: right center;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tonearm::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 10px;
  height: 8px;
  background: #444;
  border-radius: 2px;
}

/* Deck controls */
.deck-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-url {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  padding: 0.5rem;
  background: #0d001a;
  border: 2px solid var(--neon-purple);
  color: var(--neon-cyan);
  outline: none;
}

.track-url::placeholder {
  color: #666;
}

.track-url:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.load-btn {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  padding: 0.5rem;
  background: transparent;
  border: 2px solid var(--neon-purple);
  color: var(--neon-purple);
  cursor: pointer;
  transition: all 0.3s;
}

.load-btn:hover {
  background: var(--neon-purple);
  color: white;
  box-shadow: 0 0 15px var(--neon-purple);
}

.transport {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.play-btn,
.cue-btn {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  background: #0d001a;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover,
.cue-btn:hover {
  background: var(--neon-cyan);
  color: #0d001a;
  box-shadow: 0 0 15px var(--neon-cyan);
}

.play-btn.playing {
  background: var(--neon-cyan);
  color: #0d001a;
}

.cue-btn {
  font-size: 0.8rem;
  border-color: var(--neon-orange);
  color: var(--neon-orange);
}

.cue-btn:hover {
  background: var(--neon-orange);
  color: #0d001a;
  box-shadow: 0 0 15px var(--neon-orange);
}

.speed-control,
.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--neon-yellow);
}

.pitch-slider,
.volume-slider,
.eq-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #1a0533;
  border: 1px solid var(--neon-purple);
  outline: none;
}

.pitch-slider::-webkit-slider-thumb,
.volume-slider::-webkit-slider-thumb,
.eq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 20px;
  background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-pink);
}

/* EQ Section */
.eq-section {
  display: flex;
  justify-content: space-around;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.eq-knob {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  color: var(--neon-cyan);
}

.eq-slider {
  width: 40px !important;
  transform: rotate(-90deg);
  margin: 15px 0;
}

.track-info {
  font-family: 'Russo One', sans-serif;
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.5rem;
  padding: 0.3rem;
  background: #0a0a0a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center Mixer */
.mixer-center {
  background: linear-gradient(180deg, #1a0533 0%, #0d001a 100%);
  border: 3px solid var(--neon-purple);
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 0 20px var(--neon-purple);
}

.vu-meters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vu-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  color: var(--neon-yellow);
}

.vu-bar {
  width: 20px;
  height: 80px;
  background: linear-gradient(180deg,
      #ff0000 0%,
      #ff6600 20%,
      #ffff00 40%,
      #00ff00 60%,
      #00ff00 100%);
  border: 2px solid #333;
  position: relative;
  overflow: hidden;
}

.vu-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: #0d001a;
  transition: height 0.1s;
}

.crossfader-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--neon-cyan);
  font-size: 0.8rem;
}

.crossfader {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, var(--neon-cyan), #1a0533, var(--neon-pink));
  border: 2px solid var(--neon-purple);
}

.crossfader::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 30px;
  background: linear-gradient(180deg, #fff, #ccc);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.master-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-yellow);
  font-size: 0.8rem;
}

.master-vol {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #1a0533;
  border: 2px solid var(--neon-yellow);
}

.master-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 24px;
  background: var(--neon-yellow);
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-yellow);
}

.bpm-display {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
}

.bpm {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  color: var(--neon-yellow);
  padding: 0.3rem 0.5rem;
  background: #0a0a0a;
  border: 1px solid #333;
}

.fx-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fx-btn {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  padding: 0.5rem;
  background: #0d001a;
  border: 2px solid var(--neon-purple);
  color: var(--neon-purple);
  cursor: pointer;
  transition: all 0.3s;
}

.fx-btn:hover,
.fx-btn.active {
  background: var(--neon-purple);
  color: white;
  box-shadow: 0 0 15px var(--neon-purple);
}

/* Sample Pads */
.sample-pads {
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.sample-pads h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  margin-bottom: 1rem;
}

.pads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.pad {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a0533, #2d1b4e);
  border: 3px solid var(--neon-pink);
  color: var(--neon-pink);
  cursor: pointer;
  transition: all 0.1s;
  box-shadow: 0 0 10px var(--neon-pink);
}

.pad:hover {
  background: var(--neon-pink);
  color: #0d001a;
  transform: scale(0.95);
}

.pad:active {
  transform: scale(0.9);
  box-shadow: 0 0 30px var(--neon-pink);
}

.pad:nth-child(2),
.pad:nth-child(4),
.pad:nth-child(6),
.pad:nth-child(8) {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.pad:nth-child(2):hover,
.pad:nth-child(4):hover,
.pad:nth-child(6):hover,
.pad:nth-child(8):hover {
  background: var(--neon-cyan);
}

/* Responsive DJ Mixer */
@media (max-width: 900px) {
  .dj-mixer {
    flex-direction: column;
    align-items: center;
  }

  .deck,
  .mixer-center {
    width: 100%;
    max-width: 320px;
  }

  .playlist-section {
    flex-direction: column;
  }
}

/* ===============================================
   ENHANCED DJ MIXER STYLES
   =============================================== */

/* File input */
.file-input-wrapper {
  position: relative;
}

.file-input-wrapper input[type="file"] {
  display: none;
}

/* SoundCloud URL input */
.url-input-wrapper {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.sc-url {
  flex: 1;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  padding: 0.4rem;
  background: #0d001a;
  border: 2px solid var(--neon-orange);
  color: var(--neon-cyan);
  outline: none;
  min-width: 0;
}

.sc-url::placeholder {
  color: #555;
}

.sc-url:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.sc-btn {
  border-color: var(--neon-orange) !important;
  color: var(--neon-orange) !important;
  font-size: 0.7rem !important;
  padding: 0.4rem 0.5rem !important;
}

.sc-btn:hover {
  background: var(--neon-orange) !important;
  color: #0d001a !important;
  box-shadow: 0 0 15px var(--neon-orange) !important;
}

/* Stop button */
.stop-btn {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  padding: 0.5rem 0.8rem;
  background: #0d001a;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  cursor: pointer;
  transition: all 0.3s;
}

.stop-btn:hover {
  background: var(--neon-pink);
  color: #0d001a;
  box-shadow: 0 0 15px var(--neon-pink);
}

/* Waveform display */
.waveform-display {
  background: #0a0a0a;
  border: 2px solid var(--neon-purple);
  margin-bottom: 0.5rem;
  padding: 0.3rem;
}

.waveform-display canvas {
  display: block;
  width: 100%;
  height: 40px;
}

.time-display {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--neon-cyan);
  text-align: center;
  margin-top: 0.2rem;
}

/* Improved VU meters */
.vu-bar-container {
  width: 24px;
  height: 100px;
  background: #0a0a0a;
  border: 2px solid #333;
  position: relative;
  overflow: hidden;
}

.vu-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg,
      #ff0000 0%,
      #ff6600 20%,
      #ffff00 40%,
      #00ff00 100%);
  transition: height 0.05s ease-out;
}

/* Crossfader mode */
.crossfader-mode {
  font-size: 0.7rem;
  color: var(--neon-yellow);
  margin-bottom: 0.5rem;
}

.crossfader-mode input {
  margin-right: 0.3rem;
}

/* Sync button */
.sync-section {
  margin: 0.5rem 0;
}

.sync-btn {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid var(--neon-yellow);
  color: var(--neon-yellow);
  cursor: pointer;
  transition: all 0.3s;
}

.sync-btn:hover {
  background: var(--neon-yellow);
  color: #0d001a;
  box-shadow: 0 0 20px var(--neon-yellow);
}

/* Filter control */
.filter-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--neon-cyan);
}

.filter-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #1a0533, var(--neon-cyan));
  border: 1px solid var(--neon-purple);
}

.filter-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 20px;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* ===============================================
   WINAMP-STYLE PLAYLIST
   =============================================== */
.playlist-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.playlist-container {
  width: 300px;
  background: linear-gradient(180deg, #1a0533 0%, #0d001a 100%);
  border: 3px solid var(--neon-purple);
  box-shadow: 0 0 15px var(--neon-purple);
}

.playlist-container.playlist-a {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.playlist-container.playlist-b {
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink);
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #333;
}

.playlist-header span {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: var(--neon-cyan);
}

.playlist-a .playlist-header span {
  color: var(--neon-cyan);
}

.playlist-b .playlist-header span {
  color: var(--neon-pink);
}

.playlist-add-btn {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  cursor: pointer;
  transition: all 0.2s;
}

.playlist-add-btn:hover {
  background: var(--neon-purple);
  color: white;
}

.playlist-items {
  height: 150px;
  overflow-y: auto;
  padding: 0.3rem;
  background: #0a0a0a;
}

.playlist-items::-webkit-scrollbar {
  width: 8px;
}

.playlist-items::-webkit-scrollbar-track {
  background: #1a0533;
}

.playlist-items::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
}

.playlist-empty {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  padding: 2rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  font-size: 0.75rem;
  color: #ccc;
  border-bottom: 1px solid #222;
  cursor: pointer;
  transition: background 0.2s;
}

.playlist-item:hover {
  background: rgba(157, 0, 255, 0.2);
}

.playlist-item.active {
  background: rgba(0, 255, 255, 0.2);
  color: var(--neon-cyan);
}

.playlist-item .track-num {
  width: 20px;
  color: #666;
  font-size: 0.65rem;
}

.playlist-item .track-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item .track-duration {
  color: #666;
  font-size: 0.65rem;
  margin-left: 0.5rem;
}

.playlist-item .remove-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0 0.3rem;
  margin-left: 0.3rem;
}

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

.playlist-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #333;
}

.playlist-controls button {
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  cursor: pointer;
  transition: all 0.2s;
}

.playlist-controls button:hover {
  background: var(--neon-purple);
  color: white;
}

/* ===============================================
   CYBER-MOUNT SECTION
   =============================================== */
.cyber-mount-section {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 0, 26, 0.8) 50%, transparent 100%);
}

.cyber-mount-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3em;
}

.cyber-mount-subtitle {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  margin-bottom: 2rem;
}

.cyber-mount-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--neon-purple);
  box-shadow:
    0 0 20px var(--neon-purple),
    0 0 40px var(--neon-pink),
    inset 0 0 30px rgba(157, 0, 255, 0.2);
  overflow: hidden;
}

.cyber-mount-image {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@media (max-width: 600px) {
  .cyber-mount-section {
    padding: 2rem 0.5rem;
  }

  .cyber-mount-wrapper {
    border-width: 2px;
  }
}

/* Karneval Section Special Styles */
.karneval-section .cyber-mount-title {
  color: var(--neon-yellow);
  text-shadow:
    0 0 10px var(--neon-yellow),
    0 0 20px var(--neon-orange),
    0 0 40px var(--neon-yellow);
}

.karneval-wrapper {
  border-color: var(--neon-orange) !important;
  box-shadow:
    0 0 20px var(--neon-orange),
    0 0 40px var(--neon-yellow),
    inset 0 0 30px rgba(255, 165, 0, 0.2) !important;
}

/* Neue Weltordnung Section Special Styles */
.weltordnung-section .cyber-mount-title {
  color: #ffd700;
  text-shadow:
    0 0 10px #ffd700,
    0 0 20px #00ff00,
    0 0 40px #ffd700;
}

.weltordnung-section .cyber-mount-subtitle {
  color: #00ff00;
  text-shadow: 0 0 10px #00ff00;
}

.weltordnung-wrapper {
  border-color: #ffd700 !important;
  box-shadow:
    0 0 20px #ffd700,
    0 0 40px #00ff00,
    inset 0 0 30px rgba(255, 215, 0, 0.3) !important;
}

/* Das Letzte Funding / Abendmahl Section Styles */
.abendmahl-section {
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(139, 69, 19, 0.2) 30%,
      rgba(139, 69, 19, 0.3) 50%,
      rgba(139, 69, 19, 0.2) 70%,
      transparent 100%);
}

.abendmahl-section .cyber-mount-title {
  color: #ffd700;
  text-shadow:
    0 0 10px #ffd700,
    0 0 20px #ff6600,
    0 0 40px #ffd700,
    0 0 60px rgba(255, 215, 0, 0.5);
  font-style: italic;
}

.abendmahl-section .cyber-mount-subtitle {
  color: #ff9900;
  text-shadow: 0 0 10px #ff6600;
}

.abendmahl-wrapper {
  border-color: #8b4513 !important;
  border-width: 6px !important;
  box-shadow:
    0 0 30px #ffd700,
    0 0 60px #ff6600,
    inset 0 0 50px rgba(139, 69, 19, 0.4) !important;
}

.abendmahl-quote {
  font-family: 'Russo One', sans-serif;
  font-size: 1.1rem;
  color: #ffd700;
  text-shadow: 0 0 10px #ff6600;
  margin-top: 1.5rem;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* English Version - Slightly Different Color */
.abendmahl-english .cyber-mount-title {
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px #ff00ff,
    0 0 40px #00ffff;
}

.abendmahl-english .abendmahl-quote {
  color: #00ffff;
  text-shadow: 0 0 10px #ff00ff;
}

/* Kölsch Karneval Abendmahl Special Styles */
.karneval-abendmahl {
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(255, 0, 0, 0.15) 20%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(255, 0, 0, 0.15) 60%,
      rgba(255, 255, 255, 0.1) 80%,
      transparent 100%);
}

.karneval-abendmahl .cyber-mount-title {
  color: #ff0000;
  text-shadow:
    0 0 10px #ff0000,
    0 0 20px #ffcc00,
    0 0 40px #ff0000,
    0 0 60px rgba(255, 204, 0, 0.5);
}

.karneval-abendmahl .cyber-mount-subtitle {
  color: #ffcc00;
  text-shadow: 0 0 15px #ff6600;
}

.karneval-abendmahl-wrapper {
  border: 6px solid #ff0000 !important;
  box-shadow:
    0 0 30px #ff0000,
    0 0 60px #ffcc00,
    inset 0 0 50px rgba(255, 0, 0, 0.3) !important;
}

.karneval-abendmahl .abendmahl-quote {
  color: #ffcc00;
  text-shadow:
    0 0 10px #ff6600,
    0 0 20px #ff0000;
}

.karneval-subquote {
  font-size: 0.9rem !important;
  margin-top: 0.5rem !important;
  color: #ff6600 !important;
}

/* ===============================================
   SYNTHWAVE CHAT WIDGET
   =============================================== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Russo One', sans-serif;
}

/* Chat Toggle Button */
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border: 3px solid var(--neon-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 20px var(--neon-purple),
    0 0 40px var(--neon-pink),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 30px var(--neon-purple),
    0 0 60px var(--neon-pink);
}

.chat-toggle.active {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.chat-toggle-icon {
  font-size: 1.8rem;
  z-index: 1;
}

.chat-toggle-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--neon-cyan);
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 450px;
  background: rgba(13, 0, 26, 0.95);
  border: 3px solid var(--neon-purple);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
  box-shadow:
    0 0 30px var(--neon-purple),
    0 0 60px rgba(157, 0, 255, 0.3),
    inset 0 0 30px rgba(157, 0, 255, 0.1);
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  border-radius: 12px 12px 0 0;
  border-bottom: 2px solid var(--neon-cyan);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  font-size: 1.8rem;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
}

.chat-title {
  font-size: 0.9rem;
  color: white;
  text-shadow: 0 0 10px var(--neon-cyan);
  letter-spacing: 0.1em;
}

.chat-status {
  font-size: 0.7rem;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.chat-close {
  background: none;
  border: 2px solid white;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-close:hover {
  background: var(--neon-pink);
  transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(157, 0, 255, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 3px;
}

.chat-message {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.chat-message.user {
  flex-direction: row-reverse;
}

.message-avatar {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.message-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 15px;
  position: relative;
}

.chat-message.bot .message-bubble {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3), rgba(255, 0, 128, 0.2));
  border: 1px solid var(--neon-purple);
  border-top-left-radius: 5px;
}

.chat-message.user .message-bubble {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(157, 0, 255, 0.2));
  border: 1px solid var(--neon-cyan);
  border-top-right-radius: 5px;
}

.message-bubble p {
  margin: 0 0 5px 0;
  color: white;
  font-size: 0.85rem;
  line-height: 1.4;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
}

.message-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  text-align: right;
}

/* Chat Input Area */
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 2px solid var(--neon-purple);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 12px 12px;
}

.chat-input {
  flex: 1;
  background: rgba(157, 0, 255, 0.1);
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  padding: 10px 15px;
  color: white;
  font-family: 'Russo One', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.2s;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: 2px solid var(--neon-cyan);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.chat-send span {
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 40px);
    height: 400px;
    right: -10px;
  }

  .chat-widget {
    bottom: 15px;
    right: 15px;
  }

  .chat-toggle {
    width: 50px;
    height: 50px;
  }
}
