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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #d4a853;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f0c96e;
}

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  transition: background 0.3s ease;
}

nav .logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a853;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav .nav-links a {
  color: #999;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #d4a853;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #d4a853;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(120, 80, 200, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 168, 83, 0.4);
  border-radius: 50%;
  animation: float linear infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #d4a853, #f0c96e, #d4a853);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

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

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero .tagline {
  font-size: 1rem;
  color: #666;
  margin-top: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: #555;
}

/* ===== Section Styles ===== */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4a853, transparent);
}

.section-header p {
  color: #777;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== About Section ===== */
.about {
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.02) 0%, transparent 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text p {
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text .highlight {
  color: #d4a853;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
}

.stat-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: #d4a853;
  display: block;
}

.stat-card .label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ===== Sets Grid ===== */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.set-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.set-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.set-card:hover .yt-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.set-card:hover .yt-thumb img {
  transform: scale(1.05);
}

/* YouTube thumbnail */
.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.yt-play svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Card body */
.card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-body .card-badge {
  align-self: flex-start;
}

.set-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.set-card .card-date {
  font-size: 0.8rem;
  color: #666;
}

.set-card .card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-soundcloud {
  background: rgba(255, 85, 0, 0.15);
  color: #ff5500;
  border: 1px solid rgba(255, 85, 0, 0.3);
}

.badge-mixcloud {
  background: rgba(82, 156, 203, 0.15);
  color: #529ccb;
  border: 1px solid rgba(82, 156, 203, 0.3);
}

.badge-frisky {
  background: rgba(0, 200, 150, 0.15);
  color: #00c896;
  border: 1px solid rgba(0, 200, 150, 0.3);
}

.badge-beatport {
  background: rgba(148, 210, 26, 0.15);
  color: #94d21a;
  border: 1px solid rgba(148, 210, 26, 0.3);
}

.badge-youtube {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
  border: 1px solid rgba(255, 0, 0, 0.3);
}



/* ===== Full Embed Sections ===== */
.embed-section {
  margin-top: 2rem;
}

.embed-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px 2rem;
  margin-top: 2rem;
}

.embed-container iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  display: block;
  max-width: 100%;
}

.embed-container--spaced {
  margin-top: 3rem;
}

.embed-label {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.embed-label--mixcloud {
  color: #529ccb;
}

/* ===== Connect Section ===== */
.connect-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.connect-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.connect-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.connect-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ===== FRISKY Archive Grid ===== */
.frisky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.frisky-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 200, 150, 0.03);
  border: 1px solid rgba(0, 200, 150, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.frisky-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 150, 0.3);
  background: rgba(0, 200, 150, 0.06);
}

.frisky-date {
  font-size: 0.75rem;
  color: #00c896;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.frisky-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.35rem;
}

.frisky-genre {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.2rem;
}

.frisky-play {
  font-size: 0.8rem;
  color: #00c896;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.community-notice {
  font-size: 0.95rem;
  color: #888;
  max-width: none;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .community-notice {
    white-space: nowrap;
  }
}

.community-notice strong {
  color: #d4a853;
}

footer .copyright {
  font-size: 0.75rem;
  color: #444;
  margin-top: 1rem;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .sets-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  }

  nav .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

  .sets-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .embed-container {
    padding: 1rem;
  }

  .embed-container iframe {
    height: 300px;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .hero .subtitle {
    letter-spacing: 3px;
  }

  .connect-grid {
    gap: 0.75rem;
  }

  .connect-link {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .connect-link {
    flex: 1 1 45%;
    justify-content: center;
  }

  .card-body {
    padding: 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: 2px;
  }

  .hero .subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
}
