* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px 3px rgba(168, 85, 247, 0.35), 0 18px 45px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 0 26px 9px rgba(168, 85, 247, 0.7),  0 18px 45px rgba(0,0,0,0.35); }
}

.anim-banner { animation: fadeSlideIn 0.75s ease 0.05s both; }
.anim-avatar { animation: fadeSlideIn 0.7s ease 0.3s both, glowPulse 3.2s ease-in-out 1s infinite; }
.anim-badge  { animation: fadeIn 0.6s ease 0.5s both; }
.anim-h1     { animation: fadeSlideIn 0.7s ease 0.55s both; }
.anim-sub    { animation: fadeSlideIn 0.7s ease 0.75s both; }
.anim-body   { animation: fadeSlideIn 0.7s ease 0.85s both; }
.anim-grid   { animation: fadeIn 0.7s ease 1s both; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, #3a1b52 0%, #05010d 45%),
    linear-gradient(180deg, #09090f 0%, #18111f 55%, #08070d 100%);

  color: #f5f3ff;

  min-height: 100vh;

  line-height: 1.6;

  padding-left: 92px;

  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  padding: 40px 24px 90px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.updates-grid {
  display: grid;
  gap: 24px;
}

.update-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.update-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.065);
}

.update-date {
  color: #e879f9;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

.update-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.update-text {
  color: #c9c2d8;
  font-size: 18px;
  line-height: 1.8;
}

.live-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,121,249,0.22);
  background: rgba(255,255,255,0.06);
}

.live-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 20px;
  margin-top: 18px;
}

.top-logo-banner {
  width: 100%;
  max-width: 760px;
  max-height: 240px;
  object-fit: cover;
  display: block;
  margin-bottom: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.subtitle {
  max-width: 760px;
  color: #d6d3e8;
  font-size: 20px;
  margin-bottom: 50px;
}

.top-logo-banner {
  width: 100%;
  max-width: 760px;
  max-height: 240px;
  object-fit: cover;
  display: block;
  margin-bottom: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.subtitle {
  max-width: 760px;
  color: #d6d3e8;
  font-size: 20px;
  margin-bottom: 50px;
}

.hero {
  min-height: auto;
  padding: 32px 24px 70px;

  display: flex;
  align-items: center;

  flex: 1;

  background:
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.38), transparent 32%),
    radial-gradient(circle at 82% 25%, rgba(56, 189, 248, 0.22), transparent 34%),
    linear-gradient(180deg, #09090f 0%, #18111f 55%, #08070d 100%);

  overflow: hidden;
}

  .hero-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }

  .hero-logo-banner {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 0 14px 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.top-logo-banner {
  width: 100%;
  max-width: 760px;
  max-height: 240px;

  object-fit: cover;

  display: block;

  margin-bottom: 34px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero-logo-banner,
.artist-name-row,
.hero p,
.buttons {
  margin-left: 0;
  margin-right: auto;
}

.artist-name-row {
  justify-content: flex-start;
}

  .artist-avatar {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d8d1ff;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 24px;
  }

  .hero p {
    max-width: 650px;
    color: #d6d3e8;
    font-size: 20px;
    margin-bottom: 30px;
  }

  section {
    padding: 86px 24px;
  }

  .container {
    max-width: 1120px;
    margin: 0 auto;
  }

  .section-label {
    color: #e879f9;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  
  
  .song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }

  .song-card {
    padding: 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.045);
    transition: 0.2s ease;
  }

  .song-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.065);
  }

  .song-art {
    width: 160px;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #21172e, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .song-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .song-card p {
    color: #c9c2d8;
    margin-bottom: 14px;
  }

  .song-player {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 14px 0 12px 0;
  }

  .song-card a {
    color: #7dd3fc;
    font-weight: bold;
  }

  .about {
    background: linear-gradient(180deg, #08070d, #020202);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .about p {
    color: #d6d3e8;
    font-size: 18px;
  }

  .links-card {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.05);
  }

  .links-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .social-links a {
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f3ff;
    font-weight: bold;
    transition: 0.2s ease;
  }

  .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
  }

  footer {
    padding: 28px 24px;
    text-align: center;
    color: #8f88a8;
    background: #020202;
  }

    .artist-avatar {
      width: 108px;
      height: 108px;
    }
 
  /* =========================
   SIDEBAR
========================= */

body {
  padding-left: 92px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 92px;
  height: 100vh;
  padding: 24px 12px;
  background: rgba(8, 7, 13, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  z-index: 9999;
}

.sidebar-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 10px;
}

.sidebar a {
  display: block;
  width: 100%;
  padding: 10px 8px;
  border-radius: 14px;
  color: #d6d3e8;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.sidebar a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: #c084fc;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.sidebar a:hover {
  color: #ffffff;
  background: rgba(192, 132, 252, 0.13);
}

.sidebar a:hover::after {
  width: 60%;
}


/* =========================
   HERO FIX
========================= */

.hero-logo-banner {
  width: 100%;
  max-width: 760px;
  max-height: 240px;

  object-fit: cover;

  display: block;

  border-radius: 24px;
}

/* =========================
   CANVAS STARS
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.hero #stars {
  position: absolute;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.page {
  position: relative;
  z-index: 1;
}

.sidebar {
  z-index: 9999;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1100px) {

  body {
    padding-left: 0;
  }

  .sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    padding: 8px 10px;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-logo {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .sidebar a {
    width: auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 12px;
    flex-shrink: 0;
  }

}