:root {
  --bg: #05060a;
  --panel: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);
  --text: #e9eef9;
  --muted: #9fb1c7;
  --primary: #7f5af0;
  --accent: #00e0c6;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(127, 90, 240, 0.18), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(0, 224, 198, 0.18), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}

.links a.active {
  color: var(--text);
  border-color: var(--primary);
}

.nav-right {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #06070a;
  box-shadow: 0 10px 30px rgba(127, 90, 240, 0.3);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
  margin: 20px 0 32px;
}

.hero-logo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  min-height: 220px;
  display: grid;
  place-items: center;
}

.hero-copy h1 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 4.5vw, 42px);
}

.hero-copy p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 6px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

.section {
  margin: 40px 0;
}

.section h2 {
  margin: 8px 0 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.artist-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.artist-teaser.alt {
  direction: rtl;
}
.artist-teaser.alt .art-copy { direction: ltr; }
.artist-teaser.alt .art-img { direction: ltr; }

.art-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.link {
  color: var(--accent);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14px;
}

.form input:focus,
.form textarea:focus {
  outline: 1px solid var(--primary);
  border-color: var(--primary);
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
}

.list-plain {
  padding-left: 18px;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
}

.hero-artist {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  display: grid;
  align-items: end;
  padding: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-artist h1 {
  margin: 0 0 6px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.hero-artist p {
  margin: 0;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(145deg, rgba(127,90,240,0.9), rgba(0,224,198,0.85));
  color: #06070a;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.player button {
  border: none;
  background: rgba(6,7,10,0.15);
  color: #06070a;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 20px 32px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.poster-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  min-height: 240px;
}

.poster-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .nav { position: sticky; }
  .links { gap: 10px; }
  .player { left: 20px; right: 20px; justify-content: space-between; }
}

