/* MCR Portal shared styles */ 

:root {
  --bg: #050608;
  --bg-alt: #101218;
  --accent: #f4b400;
  --accent-soft: rgba(244, 180, 0, 0.16);
  --accent-strong: #ffcc33;
  --text: #f5f5f5;
  --muted: #a0a4b8;
  --border: #262938;
  --danger: #ff4b6a;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171a2e 0, #050608 52%, #020308 100%);
  color: var(--text);
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 16px 90px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(120deg, rgba(9, 11, 20, 0.9), rgba(9, 11, 16, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 10px;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 20% 0, #ffffff 0, #f4b400 20%, #f04f2b 55%, #050608 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 11px;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  border: 0;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.nav-link span {
  opacity: 0.9;
}
.nav-link[data-active="true"] {
  color: #050608;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 8px 24px rgba(244, 180, 0, 0.5);
  font-weight: 600;
}
.nav-link:hover:not([data-active="true"]) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid rgba(244, 180, 0, 0.4);
}
.pill small {
  opacity: 0.85;
}
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at top, #ffffff 0, #aaaaaa 30%, #050608 100%);
}
.page-title {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}
.page-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: 26px;
  margin-top: 28px;
  margin-bottom: 20px;
}
@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-cta {
    display: none;
  }
  .hero,
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.hero-card,
.panel {
  padding: 18px 20px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 0 0, rgba(244, 180, 0, 0.09) 0, transparent 60%),
              linear-gradient(145deg, rgba(17, 20, 35, 0.98), rgba(5, 6, 10, 0.98));
  box-shadow: var(--shadow-soft);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.hero-h1 {
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.15;
  margin: 0 0 10px;
}
.hero-gradient {
  background: linear-gradient(120deg, #ffffff, var(--accent-strong));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  max-width: 34rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-tag {
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 11, 26, 0.85);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-strong));
  color: #050608;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(244, 180, 0, 0.55);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(244, 180, 0, 0.72);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(244, 180, 0, 0.1), rgba(5, 6, 12, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 12px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--muted);
}
.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 75, 106, 0.12);
  border: 1px solid rgba(255, 75, 106, 0.6);
  color: #ffb4c2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pill-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 75, 106, 0.38);
}
.video-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 10% 0, #4c4f7a 0, #050608 60%);
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 48%);
}
.video-controls {
  position: absolute;
  inset-inline: 0;
  bottom: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-size: 11px;
}
.video-play {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-play span {
  margin-left: 3px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #050608;
}
.video-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.video-title {
  font-size: 11px;
  font-weight: 600;
}
.video-sub {
  font-size: 10px;
  color: var(--muted);
}
.progress-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.progress-bar {
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--danger));
}
.social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.story-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(244, 180, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: radial-gradient(circle at top, #ffffff 0, #f4b400 30%, #050608 100%);
}
.social-pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}
.social-pill strong {
  font-size: 11px;
  color: #fff;
}
.player-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.player-art {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at top left, #f4b400 0, #f04f2b 30%, #050608 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.player-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.player-meta strong {
  font-size: 11px;
}
.pill-radio {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.16);
  border: 1px solid rgba(129, 140, 248, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 12, 0.9);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
}
.product-art {
  border-radius: 10px;
  height: 72px;
  background: radial-gradient(circle at top, #1f2937 0, #020308 55%);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.product-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 7px;
  background: rgba(5, 6, 10, 0.82);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
}
.product-name {
  font-weight: 600;
  font-size: 11px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.product-price {
  font-size: 11px;
  color: var(--accent-strong);
  font-weight: 600;
}
.product-pill {
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.artist {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 12, 0.96);
  padding: 8px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  font-size: 11px;
  align-items: center;
}
.artist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(244, 180, 0, 0.8);
  background: radial-gradient(circle at top, #ffffff 0, #f4b400 30%, #050608 100%);
}
.artist-name {
  font-weight: 600;
}
.artist-meta {
  font-size: 10px;
  color: var(--muted);
}
.artist-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
}
.badge-sub {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.6);
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.badge-fee {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.1);
  border: 1px dashed rgba(244, 180, 0, 0.7);
  color: var(--accent-strong);
}
.footer {
  margin-top: 30px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
