:root{
  --bg: #0b0b0b;
  --surface: #111111;
  --text: #f5f1eb;
  --muted: rgba(245,241,235,0.62);
  --border: rgba(255,255,255,0.12);
  --card: rgba(18,18,18,0.9);
  --glass: rgba(18,18,18,0.72);
  --shadow: rgba(0,0,0,0.6);

  --accent: #d6762a;
  --accent-deep: #9b1f14;
  --accent-grad: linear-gradient(135deg, #9b1f14 0%, #c3511a 45%, #d6762a 100%);
  --accent-soft: rgba(214,118,42,0.2);
  --accent-glow: rgba(214,118,42,0.25);
  --accent-border: rgba(214,118,42,0.35);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 44px;
  --s-8: 60px;

  --fs-0: 12px;
  --fs-1: 14px;
  --fs-2: 16px;
  --fs-3: 18px;
  --fs-4: 22px;
  --fs-5: 28px;
  --fs-6: 36px;

  --container: 1200px;
  --player-h: 120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: var(--fs-2);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--accent-soft), rgba(0,0,0,0) 70%),
    radial-gradient(900px 400px at 10% -20%, rgba(255,255,255,0.06), rgba(0,0,0,0) 70%);
  z-index: -2;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.header-left{ justify-self: start; }
.logo{ display: inline-flex; align-items: center; gap: 12px; font-weight: 700; justify-self: center; }
.logo-image{ height: 228px; width: auto; display: block; margin: -38px 0; }
.sr-only{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.nav{ display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; justify-self: end; }
.nav-link{ padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: var(--fs-1); }
.nav-link:hover{ border-color: var(--border); background: rgba(255,255,255,0.06); }
@media (max-width: 980px){
  .header__inner{
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 6px 0 12px;
  }
  .nav{
    justify-content: center;
    justify-self: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
  }
  .header-left{ display: none; }
  .logo-image{ height: 164px; margin: -25px 0; }
}

@media (max-width: 1200px){
  :root{ --container: 1080px; }
  .hero{ gap: var(--s-6); }
  .beat-row{ grid-template-columns: 200px 1.2fr 0.8fr; }
  .beat-cover{ width: 200px; }
  .player__inner{ grid-template-columns: minmax(220px, 1fr) minmax(220px, 300px) minmax(220px, 1fr); gap: var(--s-6); }
}

@media (max-width: 1100px){
  :root{ --container: 1000px; }
  .hero{ grid-template-columns: 1.1fr 0.9fr; }
  .hero-highlight{ min-height: 320px; }
  .filters{ grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); }
  .beat-row{ grid-template-columns: 180px 1.2fr 0.8fr; }
  .beat-cover{ width: 180px; }
}

.main{ padding: var(--s-8) 0 var(--s-8); }
body.player-active .main{ padding-bottom: calc(var(--player-h) + var(--s-8)); }
.section{ margin-bottom: var(--s-8); }

.hero{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-7);
  align-items: center;
}
.hero-card{
  background: linear-gradient(140deg, rgba(24,24,24,0.95), rgba(10,10,10,0.95));
  color: var(--text);
  padding: var(--s-6);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card p{ color: rgba(245,241,235,0.7); }
.hero-highlight{
  position: relative;
  padding: 0;
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.hero-highlight__image,
.hero-highlight__overlay{
  position: absolute;
  inset: 0;
}
.hero-highlight__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
  transition: transform 600ms var(--ease);
}
.hero-highlight:hover .hero-highlight__image img{ transform: scale(1.12); }
.hero-highlight__overlay{
  background:
    linear-gradient(180deg, rgba(8,8,8,0.2), rgba(8,8,8,0.75) 70%),
    radial-gradient(400px 200px at 80% 20%, var(--accent-glow), rgba(0,0,0,0) 70%);
}
.hero-highlight__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: var(--s-5);
}
.hero-highlight__badge{
  align-self: flex-start;
  background: var(--accent-grad);
  color: #0b0b0b;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-0);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-highlight__title{
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
}
.hero-highlight__meta{
  color: rgba(245,241,235,0.8);
  font-size: var(--fs-1);
}
.logo-stamp{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-grad);
  color: #0b0b0b;
  border-radius: 999px;
  padding: 6px 14px;
  margin-top: 12px;
}
.logo-stamp img{ height: 22px; width: auto; display: block; }
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

h1{ font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.1; }
h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3{ font-size: clamp(1.2rem, 2vw, 1.6rem); }
.lead{ font-family: "Spectral", serif; color: rgba(245,241,235,0.74); }
.eyebrow{ font-size: var(--fs-0); letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(245,241,235,0.7); }
.text-accent{ color: var(--accent); }
.slogan{
  margin-top: 12px;
  font-size: var(--fs-1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,241,235,0.85);
}
.hero-brand{
  font-size: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-slogan{
  margin-top: 14px;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.card{ background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: 0 16px 36px rgba(0,0,0,0.45); }

.beat-layout{ display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: stretch; }
.cart-layout{ display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: start; }
.beat-cover--detail{ width: 100%; height: 320px; }
.beat-layout > .card{ height: 100%; }
.license-panel{
  padding: 24px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.beat-hero{
  padding: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
}
.beat-hero__media{
  position: relative;
  min-height: 380px;
}
.beat-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.beat-hero__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.8) 70%);
}
.beat-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 26px;
}
.beat-hero__meta{
  margin: 0;
  font-size: var(--fs-1);
  color: rgba(245,241,235,0.8);
}
.beat-hero__actions{
  padding: 16px 22px 22px;
  background: linear-gradient(180deg, rgba(12,12,12,0.9), rgba(8,8,8,0.98));
}
.btn--preview{
  width: 100%;
  height: 50px;
  font-size: var(--fs-2);
  letter-spacing: 0.02em;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.btn--preview svg{ width: 20px; height: 20px; }
.cover-play--hero{
  background: transparent;
  z-index: 3;
}

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 var(--s-4); border-radius: 999px; border: 1px solid var(--border);
  background: #121212; color: var(--text); font-weight: 600; transition: all 180ms var(--ease);
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.btn--primary{ background: var(--accent-grad); border-color: transparent; color: #0b0b0b; }
.btn--ghost{ background: transparent; }
.btn--sm{ height: 40px; font-size: var(--fs-1); }
.btn:disabled{ opacity: 0.5; pointer-events: none; }
.btn--back svg{ width: 18px; height: 18px; }

.badge{ display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: var(--fs-0); font-weight: 600; background: var(--accent-soft); color: var(--text); }
.badge--accent{ background: var(--accent-grad); color: #0b0b0b; }
.tag{ display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: var(--fs-0); border: 1px solid var(--border); background: rgba(255,255,255,0.06); color: var(--text); }

.filters{ display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); padding: var(--s-4); border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--border); }
.input, select{ height: 44px; padding: 0 var(--s-3); border-radius: var(--r-md); border: 1px solid var(--border); background: #0f0f0f; color: var(--text); }

.catalog{ display: grid; gap: var(--s-4); }
.beat-row{
  display: grid; grid-template-columns: 220px 1.4fr 0.7fr; gap: var(--s-4); align-items: stretch;
  padding: var(--s-4); border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--card);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  min-height: 220px;
}
.beat-row:hover{ transform: translateY(-2px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.beat-row.is-unavailable{ opacity: 0.6; }
.beat-row.is-unavailable .btn,
.beat-row.is-unavailable .play-btn,
.beat-row.is-unavailable .cover-play{ pointer-events: none; }
.beat-cover{ width: 220px; height: 100%; border-radius: var(--r-lg); overflow: hidden; position: relative; align-self: stretch; }
.beat-cover img{ width: 100%; height: 100%; object-fit: cover; }
.beat-info{ display: grid; gap: 10px; align-content: center; }
.beat-info{ border-left: 1px solid var(--border); padding-left: 18px; }
.beat-title{ font-weight: 700; font-size: var(--fs-4); }
.beat-meta{ display: flex; flex-wrap: wrap; gap: 10px 16px; color: var(--muted); font-size: var(--fs-1); }
.beat-tags{ display: flex; flex-wrap: wrap; gap: 8px; }
.beat-actions{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  min-height: 100%;
}
.beat-price{
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.beat-buttons{
  display: grid;
  gap: 10px;
  justify-items: end;
}
.play-btn{ display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.06); font-weight: 600; color: var(--text); }
.play-btn .icon-wrap{ width: 30px; height: 30px; border-radius: 999px; background: var(--accent-grad); display: inline-flex; align-items: center; justify-content: center; color: #0b0b0b; }
.play-btn svg{ width: 16px; height: 16px; }
.cover-play{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border: 0;
  cursor: pointer;
}
.cover-play--player{ background: rgba(0,0,0,0.18); }
.cover-play__icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.cover-play__icon svg{ width: 24px; height: 24px; }
.cover-play:hover .cover-play__icon{ background: rgba(0,0,0,0.7); }
.cover-play--player .cover-play__icon{ width: 46px; height: 46px; }
.cover-play--player .cover-play__icon svg{ width: 20px; height: 20px; }
.cover-play:disabled{ cursor: default; }
.cover-play:disabled .cover-play__icon{ opacity: 0.5; }
.cover-play:disabled .wave{ opacity: 0.2; }
.wave{
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  color: rgba(255,255,255,0.65);
}
.wave span{
  width: 3px;
  height: 7px;
  background: currentColor;
  border-radius: 6px;
  animation: wavePulse 0.9s ease-in-out infinite;
  animation-play-state: paused;
}
.wave span:nth-child(2){ height: 12px; animation-delay: 0.2s; }
.wave span:nth-child(3){ height: 9px; animation-delay: 0.4s; }
.cover-play.is-playing .wave span{ animation-play-state: running; }
.cover-play.is-playing .wave{ color: var(--accent); }
.wave--cover{
  position: absolute;
  right: 12px;
  bottom: 10px;
}
.cover-play--player .wave--cover{
  right: 8px;
  bottom: 8px;
}
@keyframes wavePulse{
  0%, 100%{ transform: scaleY(0.5); opacity: 0.55; }
  50%{ transform: scaleY(1); opacity: 1; }
}
.play-btn:disabled{ opacity: 0.45; pointer-events: none; }

@media (max-width: 980px){
  .beat-row{ grid-template-columns: 1fr; }
  .beat-actions{ align-items: flex-start; }
  .beat-buttons{ width: 100%; justify-items: start; }
  .beat-cover{ width: 100%; height: 260px; }
  .beat-info{ border-left: 0; padding-left: 0; }
  .beat-layout{ grid-template-columns: 1fr; }
  .beat-layout > .card{ height: auto; }
  .cart-layout{ grid-template-columns: 1fr; }
  .beat-cover--detail{ height: 260px; }
  .beat-hero__media{ min-height: 320px; }
}

.license-grid{ display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.license-grid--beat{ grid-template-columns: 1fr; }
.license-card{
  padding: var(--s-4);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  aspect-ratio: 1 / 1;
  min-height: 260px;
}
.license-card--beat{
  position: relative;
  aspect-ratio: auto;
  height: 110px;
  min-height: 110px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.license-card--beat .license-title{
  font-weight: 700;
  font-size: var(--fs-2);
}
.license-card--beat .license-items{
  font-size: var(--fs-0);
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.license-dot{ opacity: 0.55; margin: 0 6px; }
.license-card--beat .license-price{
  margin-top: auto;
  align-self: flex-end;
  font-weight: 700;
  font-size: var(--fs-2);
}
.license-card--beat .btn{ align-self: flex-end; }
.license-card--beat .license-flag{
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  font-size: 10px;
  padding: 4px 8px;
}
.license-card--compact{
  aspect-ratio: auto;
  min-height: 0;
  padding: var(--s-3) var(--s-4);
}
.license-card.highlight{ border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.license-card.active{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset, 0 24px 60px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  background: var(--accent);
  color: #0b0b0b;
}
.license-card:not([data-disabled="true"]):hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.45); border-color: var(--accent); background: var(--accent); color: #0b0b0b; }
.license-card:not([data-disabled="true"]):hover .license-list{ color: rgba(0,0,0,0.7); }
.license-card:not([data-disabled="true"]):hover .badge{ background: rgba(0,0,0,0.2); color: #0b0b0b; }
.license-card:not([data-disabled="true"]):hover .license-flag{ background: #0b0b0b; color: var(--accent); }
.license-card.active .license-list{ color: rgba(0,0,0,0.7); }
.license-card.active .badge{ background: rgba(0,0,0,0.2); color: #0b0b0b; }
.license-card.active .license-flag{ background: #0b0b0b; color: var(--accent); }
.license-card.active .license-items{ color: #0b0b0b; }
.license-card:not([data-disabled="true"]):hover .license-items{ color: #0b0b0b; }
.license-card:not([data-disabled="true"]):hover .btn{
  background: #0b0b0b;
  border-color: #0b0b0b;
  color: var(--accent);
}
.license-card[data-disabled=\"true\"]{ opacity: 0.6; cursor: default; }
.license-list{ display: grid; gap: 4px; font-size: var(--fs-1); color: var(--muted); line-height: 1.35; flex: 1; align-content: start; }
.license-flag{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-grad);
  color: #0b0b0b;
  font-weight: 700;
  font-size: var(--fs-0);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 720px){
  .license-card{ aspect-ratio: auto; min-height: auto; }
}

.banner{ display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); padding: var(--s-4); border-radius: var(--r-lg); border: 1px solid var(--border); background: linear-gradient(120deg, var(--accent-soft), rgba(255,255,255,0.04)); font-weight: 600; }

.video-card{
  margin-top: var(--s-5);
  display: grid;
  gap: var(--s-5);
  justify-items: center;
  text-align: center;
}
.video-frame{
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 26px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(214,118,42,0.18), 0 18px 50px rgba(214,118,42,0.2);
  background: #0b0b0b;
}
.video-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
.video-content{
  max-width: 720px;
  display: grid;
  gap: 10px;
}
.video-content h3{ margin: 0; }
.video-content p{ margin: 0; }
.btn--pill{ height: 42px; padding: 0 22px; border-radius: 999px; font-size: var(--fs-1); }

.player{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--player-h);
  background: var(--glass);
  backdrop-filter: blur(22px);
  border-top: 1px solid var(--border);
  z-index: 30;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.player.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.player__inner{
  height: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 340px) minmax(260px, 1fr);
  align-items: center;
  gap: var(--s-7);
}
.player-left{ display: flex; align-items: center; gap: 14px; min-width: 0; justify-self: start; }
.player-cover{ width: 64px; height: 64px; border-radius: var(--r-md); overflow: hidden; position: relative; }
.player-cover img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.player-info{ min-width: 0; }
.player-title-row{ display: flex; align-items: center; gap: 10px; min-width: 0; }
.player-title{ font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-subtitle{
  font-size: var(--fs-0);
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-subtitle:empty{ display: none; }
.player-meta{ font-size: var(--fs-0); color: var(--muted); }
.player-wave{
  color: rgba(255,255,255,0.6);
  display: inline-flex;
}
.player-wave span{ animation-play-state: paused; }
.player.is-playing .player-wave{ color: var(--accent); }
.player.is-playing .player-wave span{ animation-play-state: running; }
.player-center{ display: flex; justify-content: center; justify-self: center; width: 100%; }
.player-progress{ display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; width: 100%; }
.player-controls{ display: flex; gap: 14px; align-items: center; justify-content: flex-end; justify-self: end; }
.player-time{ font-size: var(--fs-0); color: var(--muted); min-width: 40px; text-align: center; }
.player-seek{ width: 100%; accent-color: var(--accent); }
.icon-btn{
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}
.icon-btn::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}
.icon-btn svg{ width: 22px; height: 22px; }
.icon-btn--main{ width: 40px; height: 40px; }
.icon-btn--main svg{ width: 28px; height: 28px; }
.icon-btn--accent{ color: var(--accent); }
.icon-btn:hover{ transform: none; }
.icon-btn:hover::after{ opacity: 0; }
.skip-label{
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.license-card.active .btn{
  background: #0b0b0b;
  border-color: #0b0b0b;
  color: var(--accent);
}
.player-volume{ display: flex; align-items: center; gap: 8px; }
.player-volume input{ width: 80px; accent-color: var(--accent); }

@media (max-width: 980px){
  :root{ --player-h: 180px; }
  .player__inner{ grid-template-columns: 1fr; gap: 10px; padding: 8px 0; }
  .player-left{ justify-content: center; }
  .player-controls{ justify-content: space-between; flex-wrap: wrap; order: 2; }
  .player-center{ order: 3; }
  .player-progress{ width: 100%; }
  .player-volume input{ width: 100px; }
}

@media (max-width: 900px){
  .filters{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .banner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px){
  :root{ --player-h: 200px; }
  .container{ padding: 0 18px; }
  .filters{ grid-template-columns: 1fr; }
  .beat-row{ padding: var(--s-3); min-height: auto; }
  .beat-cover{ height: 220px; }
  .beat-title{ font-size: var(--fs-3); }
  .beat-buttons{ width: 100%; justify-items: start; }
  .hero-highlight{ min-height: 280px; }
  .hero-highlight__content{ padding: var(--s-4); }
  .video-frame{ border-radius: var(--r-lg); }
  .beat-cover--detail{ height: 220px; }
  .beat-hero__media{ min-height: 280px; }
  .license-card--beat{
    height: auto;
    min-height: 0;
    padding: 12px 14px;
  }
  .license-card--beat .license-items{
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  }
}

@media (max-width: 600px){
  .logo-image{ height: 126px; margin: -14px 0; }
  .nav-link{ font-size: var(--fs-0); padding: 6px 10px; }
  .player-controls{ gap: 10px; }
  .player-volume input{ width: 80px; }
  .hero-card{ padding: var(--s-5); }
  .section{ margin-bottom: var(--s-7); }
  .video-content{ text-align: left; }
}

@media (max-width: 480px){
  .icon-btn{ width: 30px; height: 30px; }
  .icon-btn svg{ width: 20px; height: 20px; }
  .icon-btn--main{ width: 36px; height: 36px; }
  .icon-btn--main svg{ width: 24px; height: 24px; }
  .player-cover{ width: 56px; height: 56px; }
  .beat-cover{ height: 200px; }
  .beat-cover--detail{ height: 200px; }
  .beat-hero__media{ min-height: 240px; }
  .beat-meta{ gap: 6px 10px; }
  .license-card--beat{ height: auto; min-height: 0; padding: 12px; }
}

@media (max-width: 380px){
  .logo-image{ height: 110px; margin: -12px 0; }
  .nav{ gap: 6px; }
  .btn{ height: 42px; padding: 0 14px; }
  .player-volume{ width: 100%; }
  .player-volume input{ width: 100%; }
}

.footer{ border-top: 1px solid var(--border); padding: var(--s-6) 0; color: var(--muted); font-size: var(--fs-1); }
.footer__inner{ display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--s-5); }
@media (max-width: 800px){
  .footer__inner{ grid-template-columns: 1fr; }
}

.hidden{ display: none !important; }
