/* style.css */
:root{
  --accent:#E63946;
  --muted:#6B7280;
  --bg:#0f172a;
}

html, body {
  height:100%;
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:linear-gradient(90deg, rgba(15,23,42,1) 0%, rgba(10,12,20,0.75) 50%), var(--bg);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.card {
  width:1100px;
  max-width:95%;
  height:640px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:18px;
  box-shadow:0 10px 40px rgba(2,6,23,0.7);
  display:grid;
  grid-template-columns:1fr 420px;
  overflow:hidden;
}

/* LEFT COLUMN */
.left {
  padding:40px 48px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.logo {
  font-weight:700;
  letter-spacing:1px;
  color:var(--accent);
}
.title {
  font-size:28px;
  font-weight:800;
  margin:6px 0;
}
.description {
  color:#d1d5db;
  line-height:1.5;
  font-size:15px;
}
.cover-wrap {
  display:flex;
  gap:18px;
  align-items:center;
}
.cover {
  width:150px;
  height:150px;
  border-radius:12px;
  flex-shrink:0;
  background-position:center;
  background-size:cover;
  box-shadow:0 8px 30px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.04);
}
.meta {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.artist {
  font-weight:700;
}
.meta small {
  color:var(--muted);
}
.tracklist {
  margin-top:6px;
}
.tracklist ul {
  list-style:none;
  padding:0;
  margin:8px 0 0 0;
}
.tracklist li {
  padding:10px 12px;
  border-radius:8px;
  background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  margin-bottom:8px;
  font-weight:600;
}
.tracklist li span {
  display:inline-block;
  color:var(--muted);
  font-weight:500;
  margin-left:10px;
}

/* RIGHT COLUMN */
.right {
  position:relative;
  padding:48px;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.bg-photo {
  position:absolute;
  inset:0;
  background-image:url(tlo.jpg);
  background-position:right center;
  background-size:cover;
  opacity:0.12;
  filter:grayscale(10%);
}
.cta-wrap {
  position:relative;
  z-index:2;
  text-align:center;
  padding:6px 12px;
}
.coming {
  font-size:64px;
  font-weight:900;
  line-height:0.9;
  letter-spacing:-1px;
  margin:0;
}
.sub {
  color:var(--muted);
  margin-top:12px;
  font-weight:600;
}
.purchase-placeholder {
  margin:28px auto 0 auto;
  width:260px;
  height:48px;
  border-radius:12px;
  border:2px dashed rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
}

.play-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: 0.25s ease;
  backdrop-filter: blur(4px);
}

.play-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.play-box-cover {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.play-box-content {
  flex: 1;
}

.play-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.play-sub {
  font-size: 12px;
  color: #ccc;
  margin-top: 2px;
}

.play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e83e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(232, 62, 62, 0.5);
}

.play-box:hover .play-button {
  background: #ff5050;
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.7);
}

}


