:root {
  --bg: #050608;
  --bg-alt: #0c0f16;
  --accent: #ffea00;
  --accent-soft: rgba(255, 204, 51, 0.08);
  --text: #f5f5f5;
  --muted: #b0b4c0;
  --card: #101521;
  --border: #232836;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
  --spotify:#1ED760;
  --applemusic:#FA586A;
  --amazonmusic:#25D1DA;
  --deezer:#A238FF;
  --tidal: #ffffff;
  --soundcloud:#FF5500;
  --bandcamp:#1DA0C3;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--accent);
  text-decoration: none;
}

body {
  margin: 0;
  padding: 40px 20px;
  background: radial-gradient(circle at top, var(--card) 0, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
}

footer {
  margin-top: 32px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
}

header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  justify-content: center;
  text-align: center;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'BeeSyrup', sans-serif;
}

/* CSS CLASSES */

.Avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

.Badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(8,10,18,0.9);
  border: 1px solid rgba(255,255,255,0.06);
}

.BadgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  justify-content: center;
}

.BtnSpotify:hover {
  background: rgba(30, 215, 96, 0.15);
  border-color: var(--spotify);
  color: var(--spotify);
}
.BtnApple:hover {
  background: rgba(250, 88, 106, 0.15);
  border-color: var(--applemusic);
  color: var(--applemusic);
}
.BtnAmazon:hover {
  background: rgba(37, 209, 218, 0.15);
  border-color: var(--amazonmusic);
  color: var(--amazonmusic);
}
.BtnTidal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--tidal);
  color: var(--tidal);
}
.BtnSoundcloud:hover {
  background: rgba(255, 85, 0, 0.15);
  border-color: var(--soundcloud);
  color: var(--soundcloud);
}
.BtnBandcamp:hover {
  background: rgba(29, 160, 195, 0.15);
  border-color: var(--bandcamp);
  color: var(--bandcamp);
}

.Card {
  background: radial-gradient(circle at top left, rgba(255,204,51,0.03) 0, transparent 55%),radial-gradient(circle at bottom right, rgba(25,180,255,0.04) 0, transparent 55%), var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.Card + .Card {
  margin-top: 16px;
}
.Card h2 {
  font-size: 18px;
  margin: 0 0 8px;
}
.Card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}

.CardPrimary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
}
.CardPrimary h3{
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: .9rem;
}
.CardPrimary > div {
  min-width: 0;
}

.CardHeader {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 8px;
}

.CardMeta {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.85;
}

.CardTitle {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.Container {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.Container h2 {
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
}
.Container h4 {
  color: var(--accent, #fff);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 12px;
}

.HeaderInfo {
  flex: 1;
  min-width: 280px;
}

.HighlightList, .PressList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.HighlightList li, .PressList li {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.HighlightList li:last-child, .PressList li:last-child {
  border-bottom: none;
}

.Link {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5,8,15,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.Link a {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7,9,15,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.Link span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.LinkList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 24px;
}
.LinkList a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #11131a;
  border: 1px solid rgba(255,255,255,0.08);
  padding-top: 70%;
}
.Photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Photo span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  padding: 4px;
  text-align: center;
  background: rgba(0,0,0,0.4);
}

.PhotoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.StreamingGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.StreamBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s, transform 0.2s;
}

.StreamBtn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.Tracks {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.Tracks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0));
  gap: 15px;
}
.Tracks li:last-child {
  border-bottom: none;
}

.TrackNumber {
  color: var(--text);
  font-size: 1rem;
}

.TrackTitle {
  min-width: 0;
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  white-space: normal; 
  word-break: break-word;
  overflow-wrap: anywhere;
  flex-grow: 1;
}
.TrackTitle a {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.TrackTime {
  color: var(--text);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.VideoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.VideoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .CardPrimary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}