/* ================================================
   DISKRET TANZBAR — 80s COLORFUL EDITION
   ================================================ */

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

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --neon-pink: #ff2d7b;
  --neon-blue: #00d4ff;
  --neon-purple: #b44dff;
  --neon-orange: #ff6b35;
  --neon-yellow: #ffdd00;
  --white: #f0f0f0;
  --gray: #666;
  --font-display: 'Righteous', cursive;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --gradient: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
  --gradient-hot: linear-gradient(135deg, var(--neon-orange), var(--neon-pink), var(--neon-purple));
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--bg);
}

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

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

a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TEXT GRADIENT UTILITY ---- */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- RETRO GRID BACKGROUND ---- */
.retro-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 45, 123, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 123, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 123, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-old {
  opacity: 0.4;
  font-size: 9px !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neon-pink);
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 2px; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 80%, rgba(255, 45, 123, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 70% 30%, rgba(180, 77, 255, 0.05) 0%, transparent 40%);
  animation: hero-bg-shift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-bg-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 2%); }
}

.hero-disco {
  position: relative;
  margin-bottom: 48px;
  z-index: 1;
}

.disco-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 45, 123, 0.3);
  animation: disco-float 4s ease-in-out infinite, disco-rotate 20s linear infinite;
  box-shadow:
    0 0 40px rgba(255, 45, 123, 0.2),
    0 0 80px rgba(180, 77, 255, 0.1),
    0 0 120px rgba(0, 212, 255, 0.05);
}

@keyframes disco-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes disco-rotate {
  0% { border-color: rgba(255, 45, 123, 0.4); }
  33% { border-color: rgba(180, 77, 255, 0.4); }
  66% { border-color: rgba(0, 212, 255, 0.4); }
  100% { border-color: rgba(255, 45, 123, 0.4); }
}

.disco-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 45, 123, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

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

.hero-pre {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--neon-pink);
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-in-up 0.8s 0.2s forwards;
}

.hero-title {
  margin-bottom: 24px;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 140px);
  line-height: 1;
  letter-spacing: 8px;
  opacity: 0;
  animation: fade-in-up 0.8s 0.4s forwards;
}

.title-outline {
  -webkit-text-stroke: 2px var(--neon-pink);
  -webkit-text-fill-color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  animation-delay: 0.6s;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gray);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-in-up 0.8s 0.8s forwards;
}

.hero-genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in-up 0.8s 1s forwards;
}

.genre-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 45, 123, 0.3);
  border-radius: 20px;
  color: var(--neon-pink);
  transition: all 0.3s;
}

.genre-tag:hover {
  background: var(--neon-pink);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.3);
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gray);
  z-index: 1;
}

.scroll-arrow {
  font-size: 18px;
  animation: bounce 2s infinite;
  color: var(--neon-pink);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ---- MARQUEE ---- */
.marquee {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 45, 123, 0.15);
  border-bottom: 1px solid rgba(255, 45, 123, 0.15);
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 45, 123, 0.03);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 6px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--neon-pink);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--gray);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 500px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 123, 0.1);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.1);
  transform: translateX(8px);
}

.stat-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 45, 123, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray);
}

/* ---- ARTISTS ---- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.artist-card {
  border: 1px solid rgba(255, 45, 123, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all 0.4s;
}

.artist-card:hover {
  border-color: var(--neon-pink);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 45, 123, 0.15);
}

.artist-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.artist-card:hover .artist-img {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}

.artist-overlay span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  padding: 6px 14px;
  background: rgba(255, 45, 123, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
}

.artist-info {
  padding: 24px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.artist-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 16px;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-card-main {
  border-color: rgba(255, 45, 123, 0.25);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 45, 123, 0.05) 100%);
}

.artist-tags span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 45, 123, 0.2);
  border-radius: 12px;
  color: var(--neon-pink);
}

/* ---- EVENTS ---- */
.events-intro {
  text-align: center;
  margin-bottom: 64px;
}

.events-intro h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.events-intro p {
  font-size: 15px;
  color: var(--gray);
}

.events-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.city-card {
  border: 1px solid rgba(255, 45, 123, 0.1);
  border-radius: 16px;
  padding: 40px;
  background: var(--bg-card);
  transition: all 0.3s;
}

.city-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 40px rgba(180, 77, 255, 0.1);
}

.city-name {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 4px;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.city-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--neon-yellow);
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-yellow);
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.city-details {
  border-top: 1px solid rgba(255, 45, 123, 0.1);
  padding-top: 20px;
}

.event-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.event-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--neon-pink);
}

.event-info {
  font-size: 13px;
  color: var(--gray);
}

/* ---- CONTACT ---- */
.contact-content {
  text-align: center;
}

.contact-content h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 45, 123, 0.3);
  border-radius: 30px;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: var(--neon-pink);
  color: var(--bg);
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.3);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(255, 45, 123, 0.1);
  padding: 24px 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-old {
  opacity: 0.4;
  transition: opacity 0.3s;
}

.footer-old:hover {
  opacity: 1;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav { padding: 16px 24px; }

  .hero { padding: 100px 24px 60px; }

  .disco-img {
    width: 200px;
    height: 200px;
  }

  .section { padding: 80px 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card { flex: 1; min-width: 140px; }

  .artists-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .events-cities { grid-template-columns: 1fr; }

  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; }
  .stat-card { min-width: auto; }

  .contact-links { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; text-align: center; }

  .city-card { padding: 24px; }
}
