/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan: #00F0FF;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --pink: #FF00FF;
  --pink-dim: rgba(255, 0, 255, 0.15);
  --pink-glow: rgba(255, 0, 255, 0.4);
  --bg: #0E0E10;
  --bg-card: #18181B;
  --bg-card2: #1F1F23;
  --text: #e8e8f0;
  --text-dim: rgba(232, 232, 240, 0.6);
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Rajdhani', 'Inter', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}

/* ===== UTILITY CLASSES ===== */
.neon-cyan {
  color: var(--cyan);
}

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

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

/* ===== BACKGROUND PARTICLES ===== */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ===== SCANLINES ===== */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 20px var(--cyan-glow);
  transition: text-shadow 0.3s;
}

.nav-logo:hover {
  text-shadow: 0 0 30px var(--cyan-glow), 0 0 60px var(--cyan-glow);
}

.logo-text {
  display: flex;
  gap: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 6px var(--cyan);
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), #0088ff);
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--cyan-glow);
}

.nav-cta:hover {
  box-shadow: 0 0 25px var(--cyan-glow), 0 0 50px var(--cyan-glow);
  transform: translateY(-1px);
  color: var(--bg);
}

.nav-cta::after {
  display: none;
}

.nav-cta.live-active {
  background: linear-gradient(135deg, #e91e63, #ff0055);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
  animation: pulse-live 2s infinite ease-in-out;
}

.nav-cta.live-active:hover {
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.8), 0 0 60px rgba(255, 0, 85, 0.4);
  transform: translateY(-1px);
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.8), 0 0 45px rgba(255, 0, 85, 0.4);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10000 !important;
}

.hamburger:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  box-shadow: 0 0 6px var(--cyan);
}

.hamburger span:nth-child(1) {
  width: 22px;
}

.hamburger span:nth-child(2) {
  width: 28px;
}

.hamburger span:nth-child(3) {
  width: 18px;
}

.hamburger.active span {
  width: 26px !important;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 80px 80px;
  overflow: hidden;
  z-index: 2;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background-image: url('twitch_banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(1.2) contrast(1.1);
  z-index: -1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 14, 16, 0.8) 0%, rgba(14, 14, 16, 0.4) 50%, rgba(14, 14, 16, 0.9) 100%);
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  animation: fade-in-up 0.6s ease forwards;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

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

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.title-line {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 6px;
  animation: fade-in-up 0.6s ease forwards;
}

.title-dj {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--text);
  animation-delay: 0.1s;
}

.title-roflu {
  font-size: clamp(3.5rem, 13vw, 9rem);
  background: linear-gradient(135deg, var(--cyan) 0%, #0088ff 40%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
  animation-delay: 0.2s;
  width: max-content;
  white-space: nowrap;
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--cyan) 0%, #0088ff 40%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: nowrap;
  width: 100%;
}

.glitch::before {
  animation: glitch-1 4s infinite 1s;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}

.glitch::after {
  animation: glitch-2 4s infinite 1s;
  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
}

@keyframes glitch-1 {

  0%,
  90%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }

  91% {
    transform: translateX(-3px);
    opacity: 0.8;
    filter: hue-rotate(90deg);
  }

  93% {
    transform: translateX(3px);
    opacity: 0.8;
  }

  95% {
    transform: translateX(0);
    opacity: 0;
  }
}

@keyframes glitch-2 {

  0%,
  90%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }

  92% {
    transform: translateX(3px);
    opacity: 0.8;
    filter: hue-rotate(-90deg);
  }

  94% {
    transform: translateX(-3px);
    opacity: 0.8;
  }

  96% {
    transform: translateX(0);
    opacity: 0;
  }
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fade-in-up 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fade-in-up 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.6s ease 0.5s forwards;
  opacity: 0;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0088dd);
  color: var(--bg);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
  box-shadow: 0 4px 40px var(--cyan-glow), 0 0 80px var(--cyan-glow);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px var(--pink-glow);
  transform: translateY(-2px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dj-avatar-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin linear infinite;
}

.ring-outer {
  inset: 0;
  border-top-color: var(--cyan);
  border-right-color: rgba(0, 255, 255, 0.3);
  animation-duration: 8s;
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 20px var(--cyan-glow);
}

.ring-inner {
  inset: 20px;
  border-bottom-color: var(--pink);
  border-left-color: rgba(255, 0, 255, 0.3);
  animation-duration: 5s;
  animation-direction: reverse;
  box-shadow: 0 0 15px var(--pink-glow), inset 0 0 15px var(--pink-glow);
}

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

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

.avatar-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  border: 3px solid rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 40px var(--cyan-glow), 0 0 80px rgba(0, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 8px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent);
}

.avatar-eq {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  z-index: 3;
}

.eq-bar {
  display: block;
  width: 6px;
  background: linear-gradient(to top, var(--cyan), var(--pink));
  border-radius: 3px 3px 0 0;
  animation: eq-dance 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 6px var(--cyan);
  min-height: 4px;
}

.eq-bar:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 0.7s;
}

.eq-bar:nth-child(2) {
  animation-delay: 0.1s;
  animation-duration: 0.9s;
}

.eq-bar:nth-child(3) {
  animation-delay: 0.2s;
  animation-duration: 0.6s;
}

.eq-bar:nth-child(4) {
  animation-delay: 0s;
  animation-duration: 1.1s;
}

.eq-bar:nth-child(5) {
  animation-delay: 0.15s;
  animation-duration: 0.75s;
}

.eq-bar:nth-child(6) {
  animation-delay: 0.3s;
  animation-duration: 0.85s;
}

.eq-bar:nth-child(7) {
  animation-delay: 0.05s;
  animation-duration: 0.65s;
}

.eq-bar:nth-child(8) {
  animation-delay: 0.25s;
  animation-duration: 0.95s;
}

@keyframes eq-dance {
  from {
    height: 4px;
  }

  to {
    height: 32px;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce-down {

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

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '//';
  opacity: 0.4;
  margin: 0 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.02), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.about-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

.about-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.about-card-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-avatar-mini {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  flex-shrink: 0;
}

.about-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-mini-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-text p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-text p strong {
  color: var(--text);
}

.about-motto {
  margin-top: 20px;
  padding: 14px 20px;
  border-left: 3px solid var(--pink);
  background: rgba(255, 0, 255, 0.05);
  border-radius: 0 8px 8px 0;
}

.motto-text {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  font-style: italic;
  letter-spacing: 2px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== GENRES SECTION ===== */
.genres-section {
  background: linear-gradient(180deg, transparent, rgba(255, 0, 255, 0.02), transparent);
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.genre-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.genre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.genre-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 255, 0.1);
}

.genre-card:hover::before {
  opacity: 1;
}

.genre-card.featured {
  border-color: rgba(255, 0, 255, 0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 0, 255, 0.04));
}

.genre-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 1;
}

.genre-card.featured:hover {
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 255, 0.15);
}

.genre-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow: 0 0 12px var(--pink-glow);
}

.genre-icon {
  margin-bottom: 16px;
}

.genre-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.genre-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.genre-bpm {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.genre-card.featured .genre-bpm {
  color: var(--pink);
  background: rgba(255, 0, 255, 0.08);
  border-color: rgba(255, 0, 255, 0.2);
}

.genre-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.genre-bar-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: width 1.5s ease;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.schedule-card.featured-schedule {
  border-color: rgba(255, 0, 255, 0.25);
}

.schedule-card.featured-schedule:hover {
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--pink-glow);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  line-height: 1;
}

.featured-schedule .schedule-day {
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink-glow);
}

.schedule-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.schedule-time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.schedule-type {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.schedule-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}

.schedule-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.featured-schedule .schedule-glow {
  background: radial-gradient(circle, rgba(255, 0, 255, 0.08), transparent 70%);
}

.schedule-cta {
  text-align: center;
}

/* ===== SETUP SECTION ===== */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.setup-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.setup-item:hover {
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--cyan-glow);
}

.setup-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.setup-info h3 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.setup-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 10px;
}

.setup-info p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== VIBES SECTION ===== */
.vibes-section {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.015), transparent);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rule-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.rule-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.rule-card:hover::after {
  transform: scaleX(1);
}

.rule-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  background: rgba(255, 0, 255, 0.08);
  border: 1px solid rgba(255, 0, 255, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.rule-card h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.rule-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--pink) 70%, transparent);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.footer-motto {
  color: var(--pink) !important;
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 600;
  margin-top: 8px;
  font-size: 1rem !important;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
  transform: translateY(-2px);
}

/* Hero Socials */
.hero-socials {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-social-link {
  color: var(--text-dim);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.hero-social-link svg {
  width: 24px;
  height: 24px;
}

.hero-social-link:hover {
  color: var(--cyan);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 8px var(--cyan-glow));
  opacity: 1;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer-tag {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== MOBILE / RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 30px 60px;
    text-align: center;
  }

  .title-roflu {
    margin: 0 auto;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-socials {
    justify-content: center;
    margin-top: 40px;
    gap: 25px;
  }

  .hero-social-link svg {
    width: 28px;
    height: 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #060608 !important;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 9999 !important;
  }

  .navbar.menu-open {
    backdrop-filter: none !important;
    background: #060608 !important;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .nav-links.open::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: -1;
    animation: scanline 10s linear infinite;
  }

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

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

  @keyframes scanline {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 0 100%;
    }
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .hamburger {
    display: flex;
  }

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

  .about-card-content {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 70px 0;
  }

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(14, 14, 16, 0.9), rgba(6, 6, 8, 1));
  position: relative;
  overflow: hidden;
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
  border-color: var(--cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--cyan-dim);
}

.contact-card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, var(--cyan-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.contact-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 15px var(--cyan-glow));
}

.contact-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.contact-text p {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-email:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow), 0 0 40px var(--cyan-glow);
  letter-spacing: 2px;
}

.contact-cta .btn {
  padding: 18px 40px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 40px 20px;
  }

  .contact-email {
    font-size: 1.5rem;
  }
}