@font-face {
  font-family: TazBlack;
  src:
    url(assets/tazblack.otf) format("opentype"),
    url(assets/tazblack.woff) format("woff");
}

@font-face {
  font-family: TazRegular;
  src:
    url(assets/tazr.otf) format("opentype"),
    url(assets/tazr.woff) format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #e8190e;
  --dark-red: #2a0a0e;
  --bg-dark: #1a0509;
  --white: #ffffff;
  --player-bg: #ffffff;
  --progress-fill: #e8190e;
  --text-light: rgba(255, 255, 255, 0.85);
}

html,
body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: TazRegular;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 20px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(assets/bg.png);
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 5, 9, 0.3) 0%,
    rgba(26, 5, 9, 0) 30%,
    rgba(26, 5, 9, 0.6) 65%,
    rgba(26, 5, 9, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ─── LOGO / TITLE ─── */
.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 8px;
  animation: fadeDown 0.7s ease both;
}

.logo-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    4px 4px 0 var(--red),
    -2px -2px 0 #000,
    6px 6px 16px rgba(232, 25, 14, 0.6);
  position: relative;
  display: inline-block;
}

/* Graffiti-style drip effect using a real asset */
.logo-img {
  width: 100%;
}

/* ─── SUBTITLE TEXT ─── */
.hero-subtitle {
  color: #fff;
  text-align: center;
  font-family: TazBlack;
  font-size: 48px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-desc {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-cta-text {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: uppercase;

  animation: fadeUp 0.7s 0.4s ease both;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 32px;
}

/* ─── MP3 PLAYER ─── */
.player-wrapper {
  width: 100%;
  max-width: 970px;
  background: var(--player-bg);
  border-radius: 16px;
  padding: 29px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.7s 0.5s ease both;
  margin: 4rem auto 1rem auto;
}

.player-cover {
  width: 325px;
  height: 325px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.player-label {
  color: #000;
  text-align: center;
  font-family: TazBlack;
  font-size: 32px;
  font-style: normal;
  font-weight: 525;
  line-height: normal;
  text-transform: uppercase;
}

.player-song {
  color: #f00;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
}

/* Progress bar */
.player-progress-wrap {
  width: 90%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.player-time {
  font-size: 11px;
  color: #666;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.player-progress {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  outline: 2px solid #e8190e;
  outline-offset: 1px;
  overflow: visible;
}
.player-progress-fill {
  height: 100%;
  background: #e8190e;
  border-radius: 999px;
  width: 0%;
  position: relative;
  pointer-events: none;
}

.player-progress-fill::after {
  content: "";
  position: absolute;
  right: auto;
  left: 100%;
  transform: translate(-50%, -50%);
  top: 50%;

  width: 32px;
  height: 22px;
  border-radius: 10px;
  border: 2px solid #e8190e;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(220, 220, 230, 0.7) 50%,
    rgba(180, 180, 200, 0.5) 100%
  );
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.15),
    0 1px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 4px;
}

.ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s,
    opacity 0.15s;
  opacity: 0.8;
  outline: none;
}

.ctrl-btn:hover {
  opacity: 1;
  transform: scale(1.12);
}
.ctrl-btn:active {
  transform: scale(0.94);
}

.ctrl-btn svg {
  display: block;
}

.play-btn {
  width: 42px;
  height: 52px;

  opacity: 1;
}

.play-btn:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ─── DARK LOWER SECTION ─── */
.lower {
  position: relative;
  background: var(--dark-red);
  border-radius: 240px 240px 0 0;
  margin-top: -180px;
  padding: 280px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

/* ─── LYRICS ─── */
.lyrics-block {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.lyrics-label {
  font-style: italic;
  display: block;
}

/* ─── CTA BUTTON ─── */
.btn-lyrics {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: TazBlack;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: normal;
  padding: 18px 52px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  margin-bottom: 30px;
  margin-top: 30px;
}

.btn-lyrics:hover {
  background: #ff2415;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 25, 14, 0.5);
}

.btn-lyrics:active {
  transform: translateY(0);
}

/* Lyrics expanded state */
.lyrics-full {
  max-width: 560px;
  width: 100%;
  display: none;
  margin-bottom: 40px;
  animation: fadeUp 0.4s ease both;
}

.lyrics-full.open {
  display: block;
  margin-top: 24px;
}

.lyrics-full .strofa {
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}

.strofa-label {
  font-style: italic;
  font-weight: 700;
  color: rgb(252 28 25);
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── LOGOS ─── */
.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  padding-top: 40px;
  width: 100%;
  max-width: 1000px;
}

.logo-item {
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

/* 24sata red logo – keep its actual color */
.logo-item.color {
  filter: none;
  opacity: 0.85;
}

/* ─── LOGO SVGs inline ─── */
.logo-svg-wrap {
  height: 36px;
  display: flex;
  align-items: center;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.logo-svg-wrap:hover {
  opacity: 1;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-audio-msg {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 4px;
  display: none;
}

@media (max-width: 720px) {
  .player-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 12px;
  }
  .player-cover {
    width: 100%;
  }
  .player-info {
    width: 100%;
  }
  .lower {
    border-radius: 80px 80px 0 0;
    padding-top: 220px;
  }
  .blood-splatter {
    display: none;
  }
  .hero-subtitle {
    font-size: 28px;
  }
  .hero-desc,
  .hero-cta-text,
  .lyrics-block {
    font-size: 20px;
  }
  .lyrics-block {
    margin-bottom: 2rem;
  }
  .strofa {
    font-size: 18px;
  }
  .logos {
    flex-direction: column;
  }
  .logo24 {
    width: 88px;
  }
  .oranz_logo {
    width: 240px;
  }
  .bclc {
    width: 60px;
  }
  .iso {
    width: 80px;
  }
  .loud {
    width: 90px;
  }
  .player-song {
    margin-top: 8px;
  }
  .player-label,
  .player-song {
    font-size: 24px;
  }
  .lyrics-full .strofa {
    font-size: 20px;
  }
  .btn-lyrics {
    font-size: 20px;
  }
  .lyrics-full.open {
    width: 80%;
    margin: 0 auto;
  }
}
