:root {
  --gold: #f5c518;
  --blue: #00b4ff;
  --white: #ffffff;
  --black: #000000;
  --gray: #111111;
  --gray2: #1a1a1a;
  --text-dim: #888;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #000; color: #fff; font-family: 'Barlow', sans-serif; overflow-x: hidden; cursor: none; }

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px; background: var(--blue); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 15px var(--blue), 0 0 30px var(--blue);
}
.cursor.big { width: 30px; height: 30px; background: transparent; border: 2px solid var(--gold); box-shadow: 0 0 15px var(--gold); }

/* BRUSH FONT via image */
.brush-title {
  display: block;
  background-image: var(--letters-img);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled { background: rgba(0,0,0,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245,197,24,0.15); }

.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo-duck { height: 80px; width: auto; filter: drop-shadow(0 0 10px rgba(0,180,255,0.5)); position: relative; top: -16px; }
.nav-logo-text { height: 40px; width: auto; display: none; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 3px; color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-social { display: flex; gap: 14px; align-items: center; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; text-decoration: none; transition: filter 0.3s, transform 0.2s; opacity: 0.7; }
.nav-social a:hover { opacity: 1; transform: scale(1.15); }
.nav-social svg { width: 20px; height: 20px; fill: #fff; }
.nav-social img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }

/* HERO */
#hero {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,100,180,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 70% 70%, rgba(245,197,24,0.06) 0%, transparent 60%), #000;
}
.sparkle { position: absolute; border-radius: 50%; animation: twinkle var(--d, 3s) ease-in-out infinite; animation-delay: var(--delay, 0s); opacity: 0; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: 1; transform: scale(2); } }
.hero-glow-top { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(0,180,255,0.25) 0%, transparent 70%); pointer-events: none; }
.hero-glow-bottom { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 300px; background: radial-gradient(ellipse, rgba(245,197,24,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-corner-line { position: absolute; border: 1px solid rgba(245,197,24,0.2); pointer-events: none; }
.hero-corner-line.tl { top: 90px; left: 40px; width: 120px; height: 120px; border-right: none; border-bottom: none; }
.hero-corner-line.tr { top: 90px; right: 40px; width: 120px; height: 120px; border-left: none; border-bottom: none; }
.hero-corner-line.bl { bottom: 50px; left: 40px; width: 120px; height: 120px; border-right: none; border-top: none; }
.hero-corner-line.br { bottom: 50px; right: 40px; width: 120px; height: 120px; border-left: none; border-top: none; }

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-duck {
  height: clamp(200px, 26vw, 340px); width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 24px rgba(0,180,255,0.5)) drop-shadow(0 0 50px rgba(0,180,255,0.2));
  animation: float 4s ease-in-out infinite;
  opacity: 0; animation: float 4s ease-in-out infinite, fadeUp 0.8s 0.2s forwards;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-logo-text {
  height: clamp(80px, 12vw, 140px); width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(245,197,24,0.3)) drop-shadow(0 0 60px rgba(0,180,255,0.2));
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-pretitle {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem;
  letter-spacing: 8px; color: var(--blue); text-transform: uppercase;
  margin-top: 16px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; margin-bottom: 80px; }

.btn-gold { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; padding: 14px 32px; background: var(--gold); color: #000; border: none; text-decoration: none; cursor: none; transition: transform 0.2s, box-shadow 0.2s; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,0.5); }
.btn-outline { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; padding: 14px 32px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); text-decoration: none; cursor: none; transition: border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 20px rgba(0,180,255,0.3); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 1s 1.4s forwards; }
.hero-scroll span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 4px; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* SECTIONS */
section { padding: 100px 48px; }
.section-header { margin-bottom: 60px; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 6px; color: var(--blue); text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title-img { height: clamp(50px, 7vw, 80px); width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 4px; }
.section-line { width: 60px; height: 2px; background: linear-gradient(to right, red, orange, yellow, green, cyan, blue, violet, red); background-size: 300% 100%; margin-top: 12px; animation: rainbowMove 5s linear infinite; }
@keyframes rainbowMove { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

/* EVENTS */
#events { background: #000; }
.events-wrap { max-width: 1200px; margin: 0 auto; }
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px; margin-bottom: 80px; }
.event-card { background: var(--gray2); border: 1px solid rgba(245,197,24,0.1); padding: 32px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), var(--blue), transparent); opacity: 0; transition: opacity 0.3s; }
.event-card:hover { border-color: rgba(245,197,24,0.4); transform: translateY(-4px); }
.event-card:hover::before { opacity: 1; }
.event-badge { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 4px; font-weight: 700; text-transform: uppercase; padding: 4px 12px; background: var(--gold); color: #000; margin-bottom: 20px; }
.event-badge.past { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text-dim); }
.event-venue { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.event-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; margin-bottom: 6px; }
.event-date { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 6px; }
.event-lineup { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 24px; line-height: 1.6; }
.event-ticket { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; padding: 10px 24px; background: transparent; color: var(--gold); border: 1px solid rgba(245,197,24,0.4); text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; }
.event-ticket:hover { background: var(--gold); color: #000; }

.past-section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 6px; color: rgba(255,255,255,0.25); text-transform: uppercase; margin-bottom: 20px; }
.past-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2px; }
.past-item { aspect-ratio: 2/3; background: var(--gray2); border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; position: relative; overflow: hidden; transition: border-color 0.3s; cursor: none; gap: 8px; }
.past-item img { width: 100%; height: 220px; object-fit: contain; display: block; }
.past-item::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,180,255,0.08) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; }
.past-item:hover { border-color: rgba(0,180,255,0.3); }
.past-item:hover::before { opacity: 1; }
.past-item-date { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.past-item-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; text-align: center; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.past-item-venue { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

/* SETS */
#sets { background: #050505; }
.sets-wrap { max-width: 1200px; margin: 0 auto; }
.genre-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.genre-btn { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 8px 20px; background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.12); cursor: none; transition: all 0.2s; }
.genre-btn:hover, .genre-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.sets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.set-card { background: var(--gray2); border: 1px solid rgba(255,255,255,0.06); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.set-card:hover { border-color: rgba(0,180,255,0.3); transform: translateY(-3px); }
.set-thumb { aspect-ratio: 16/9; background: #111; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.set-thumb-bg { position: absolute; inset: 0; }
.set-play { width: 48px; height: 48px; background: rgba(245,197,24,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; font-size: 1.2rem; transition: transform 0.2s, box-shadow 0.2s; }
.set-card:hover .set-play { transform: scale(1.1); box-shadow: 0 0 20px rgba(245,197,24,0.6); }
.set-genre-tag { position: absolute; top: 10px; right: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; background: rgba(0,0,0,0.7); color: var(--blue); border: 1px solid rgba(0,180,255,0.3); z-index: 2; }
.set-info { padding: 20px; }
.set-dj { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 4px; }
.set-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; letter-spacing: 0.5px; }
.set-meta { display: flex; align-items: center; justify-content: space-between; }
.set-event-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.set-sc-link { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 2px; font-weight: 700; color: rgba(255,102,0,0.8); text-decoration: none; text-transform: uppercase; border: 1px solid rgba(255,102,0,0.3); padding: 3px 10px; transition: background 0.2s, color 0.2s; }
.set-sc-link:hover { background: rgba(255,102,0,0.15); color: #ff6600; }

/* SOUNDCLOUD */
#soundcloud { background: #000; padding: 80px 48px; text-align: center; }
.sc-wrap { max-width: 900px; margin: 0 auto; }
.sc-brand { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px; }
.sc-logo-svg { width: 60px; height: auto; filter: drop-shadow(0 0 16px rgba(255,102,0,0.6)); }
.sc-title { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 3px; }
.sc-title span { color: #ff6600; }
.sc-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 4px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 40px; }
.sc-cta { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; padding: 14px 36px; background: #ff6600; color: #fff; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.sc-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,102,0,0.4); }

/* SOCIAL */
#social { background: #050505; padding: 80px 48px; text-align: center; }
.social-wrap { max-width: 800px; margin: 0 auto; }
.social-tagline-img { height: clamp(50px, 7vw, 80px); width: auto; filter: brightness(0) invert(1); display: block; margin: 0 auto 12px; }
.social-sub { font-size: 0.9rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-bottom: 48px; max-width: 400px; margin-left: auto; margin-right: auto; }
.social-icons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.social-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 32px; background: var(--gray2); border: 1px solid rgba(255,255,255,0.06); text-decoration: none; color: #fff; transition: border-color 0.3s, transform 0.3s; width: 160px; }
.social-card:hover { transform: translateY(-4px); }
.social-card.ig:hover { border-color: rgba(225,48,108,0.5); }
.social-card.sc:hover { border-color: rgba(255,102,0,0.5); }
.social-card.tt:hover { border-color: rgba(0,242,234,0.5); }
.social-card.yt:hover { border-color: rgba(255,0,0,0.5); }
.social-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.social-card-icon svg { width: 32px; height: 32px; fill: #fff; }
.social-card-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.social-card-handle { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; letter-spacing: 1px; font-weight: 600; text-align: center; word-break: break-all; }

/* COLLABS */
.collabs-wrap { max-width: 1200px; margin: 0 auto; }
.collab-grid { display: flex; gap: 24px; justify-content: flex-start; flex-wrap: wrap; margin-top: 40px; }
.collab-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; justify-content: space-between; padding: 32px 24px; background: var(--gray2); border: 1px solid rgba(255,255,255,0.06); width: 180px; min-height: 320px; transition: border-color 0.3s, transform 0.3s; }
.collab-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.3); }
.collab-card img { width: 100%; height: 160px; object-fit: contain; align-self: center; }
.collab-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; text-align: left; color: #fff; }
.collab-card-city { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); text-align: left; }

/* FOOTER */
footer { background: #000; border-top: 1px solid rgba(245,197,24,0.1); padding: 36px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-duck { height: 60px; width: auto; filter: drop-shadow(0 0 6px rgba(0,180,255,0.4)); }
.footer-logo-text { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-loc { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; }

.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(245,197,24,0.2), rgba(0,180,255,0.2), transparent); }

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  #soundcloud, #social { padding: 60px 20px; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
  .hero-corner-line { display: none; }
}
