html {
  scroll-behavior: smooth;
}

.scroll-down-nav {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid #f5a623; /* match your orange/gold accent */
  border-bottom: 3px solid #f5a623;
  transform: rotate(45deg);
  animation: bounce-down 1.5s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(6px, 6px); }
}

/* =============================================================
   DJ VAIDE — MUSIC PAGE
   Tokens (shared with home page)
   ============================================================= */
:root{
  --c-bg-deep:      #0a0e1a;
  --c-bg-panel:     #141b30;
  --c-bg-light:     #f5f4f0;
  --c-accent-fire:  #ff5a36;
  --c-accent-gold:  #ffb340;
  --c-accent-mint:  #36f2b0;
  --c-accent-cyan:  #2fd9ff;
  --c-accent-green: #00ff12;
  --c-ink:          #f5f4f0;
  --c-ink-dim:      #aab2c8;
  --c-ink-dark:     #14181f;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --container: 1280px;
  --gap-section: 28px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--c-bg-deep);
  color: var(--c-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav{
  background: var(--c-bg-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.nav__logo-img{
  height: 56px;
  width: auto;
  transition: transform .35s ease, filter .35s ease;
}
.nav__logo:hover .nav__logo-img{
  transform: rotate(-6deg) scale(1.06);
  filter: drop-shadow(0 0 12px var(--c-accent-mint));
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__icon-link{ display: block; }
.nav__icon{
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s ease, filter .3s ease;
}
.nav__icon-link:hover .nav__icon,
.nav__icon-link--active .nav__icon{
  transform: translateY(-4px) scale(1.08);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px var(--c-accent-cyan));
}
/* Active page indicator */
.nav__icon-link--active{
  position: relative;
}
.nav__icon-link--active::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-mint);
  box-shadow: 0 0 8px var(--c-accent-mint);
}

/* =============================================================
   REVEAL ANIMATION — fade + slide up
   ============================================================= */
.reveal{
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1),
              transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.nav.reveal{ transform: translateY(-24px); }
.nav.reveal.is-visible{ transform: translateY(0); }

/* Stagger cards within a grid */
.release-card.is-visible,
.fbf-card.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform: none; transition: none; }
  *{ animation: none !important; transition: none !important; }
}

/* =============================================================
   SHARED SECTION SHELL
   ============================================================= */
.section{
  max-width: var(--container);
  margin: var(--gap-section) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* =============================================================
   SECTION TITLE
   ============================================================= */
.section-title{
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 44px;
}
.section-title--dark{
  color: #029e09;
  font-family: "Archivo", sans-serif;
}
.section-title--light{
  color: #ff5722;
  font-family: "Archivo", sans-serif;
}

/* =============================================================
   SECTION 1 — RELEASES
   ============================================================= */
.section--releases{
  background: var(--c-bg-light);
  padding: 56px 48px 60px;
}

/* Auto-fill grid: 3 columns max, wraps automatically */
.releases__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Release Card */
.release-card{
  display: block;
  text-decoration: none;
  border-radius: var(--radius-md);
  background: #fff;
  border: 2px solid transparent;
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.34,1.4,.64,1),
    border-color .3s ease,
    box-shadow .35s ease;
}
.release-card:hover{
  transform: translateY(-8px) scale(1.02);
  border-color: var(--c-accent-green);
  box-shadow: 0 16px 40px rgba(0,255,18,0.15), 0 4px 12px rgba(0,0,0,0.12);
}

/* Album art + overlay */
.release-card__art-wrap{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.release-card__art{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}
.release-card:hover .release-card__art{
  transform: scale(1.06);
  filter: brightness(0.75);
}
.release-card__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.release-card:hover .release-card__overlay{
  opacity: 1;
}
.release-card__cta{
  font-family: "Akt", sans-serif;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid var(--c-accent-green);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/* Title strip */
.release-card__title{
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent-green);
  margin: 0;
  padding: 14px 16px;
  background: var(--c-ink-dark, #14181f);
  border-top: 1px solid rgba(0,255,18,0.18);
}

/* =============================================================
   SECTION 2 — FREE BEAT FRIDAY
   ============================================================= */
.section--fbf{
  background: linear-gradient(160deg, var(--c-bg-panel) 0%, #0b1020 100%);
  padding: 56px 48px 64px;
   scroll-margin-top: 100px;
}

/* Auto-fill grid — identical pattern to releases, wraps on add */
.fbf__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* FBF Card */
.fbf-card{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--radius-md);
  border: 2px solid var(--c-accent-fire);
  overflow: hidden;
  background: transparent;
  transition: transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .35s ease;
}
.fbf-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 44px rgba(255,90,54,0.25);
}
.fbf-card__inner{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 40px;
}
.fbf-card__number{
  font-family: "Archivo", sans-serif;
  font-size: clamp(64px, 9vw, 90px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  /* Outlined text effect matching reference */
  color: transparent;
  -webkit-text-stroke: 3px var(--c-accent-fire);
  text-shadow:
    0 0 40px rgba(255,90,54,0.18),
    0 0 80px rgba(255,90,54,0.1);
  transition: -webkit-text-stroke .3s ease, text-shadow .3s ease;
}
.fbf-card:hover .fbf-card__number{
  -webkit-text-stroke: 3px var(--c-accent-gold);
  text-shadow:
    0 0 40px rgba(255,179,64,0.35),
    0 0 80px rgba(255,179,64,0.2);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 38px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  width: 100%;
}
.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn:hover::after{ transform: translateX(120%); }
.btn:hover{ transform: translateY(-2px) scale(1.01); }
.btn:active{ transform: scale(0.98); }

.btn--fbf{
  background: linear-gradient(100deg, var(--c-accent-fire) 0%, #ff7a3d 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,90,54,0.3);
  border-radius: 0;               /* flush with card bottom */
  padding: 20px 24px;
}
.btn--fbf:hover{
  box-shadow: 0 10px 28px rgba(255,90,54,0.5);
}

/* If using a custom PNG button inside .btn:
   .btn img { display:block; height: 56px; }
   .btn__label { display:none; }          */

/* =============================================================
   FOOTER
   ============================================================= */
.footer{
  max-width: var(--container);
  margin: var(--gap-section) auto 40px;
  text-align: center;
  padding: 48px 24px;
}
.footer__follow{
  font-family: "Archivo Expanded ExtraBold", sans-serif;;
  font-size: 18px;
  color: var(--c-accent-green);
  margin: 0 0 24px;
}
.footer__socials{
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
.footer__social-link{ display: block; }
.footer__social-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.footer__social-link:hover .footer__social-icon{
  transform: translateY(-6px) rotate(8deg);
  box-shadow: 0 8px 22px rgba(54,242,176,0.45);
}
.footer__copyright{
  font-size: 13px;
  color: var(--c-ink-dim);
  margin: 0;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px){
  .section--releases,
  .section--fbf{ padding: 44px 28px 52px; }
  .nav__inner{ flex-direction: column; gap: 14px; padding: 16px; }
  .nav__links{ gap: 18px; flex-wrap: wrap; justify-content: center; }
  .nav__icon{ height: 46px; }
  .releases__grid{ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
  .fbf__grid{ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
}

@media (max-width: 520px){
  .section--releases,
  .section--fbf{ padding: 32px 16px 40px; }
  .section-title{ font-size: 30px; margin-bottom: 28px; }
  .releases__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fbf__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fbf-card__number{ font-size: 52px; }
  .footer__social-icon{ width: 46px; height: 46px; }
}


.player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.play-btn {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}
.play-btn.playing {
  background: orange;
  color: black;
}
.scrubber {
  flex: 1;
  accent-color: orange;
  cursor: pointer;
}
.time {
  font-size: 12px;
  opacity: 0.7;
  min-width: 70px;
  text-align: right;
}
