/* Spotlit — Merch & Contact Pages */

:root {
  --purple: #8B5CF6;
  --purple-dim: #6d42d9;
  --purple-glow: rgba(139, 92, 246, 0.35);
  --bg: #000000;
  --bg-2: #0d0d0d;
  --surface: #111115;
  --surface-2: #18181f;
  --border: #1e1e28;
  --white: #ffffff;
  --silver: #b8b8c8;
  --muted: #55556a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ─── HERO ─────────────────────────────────────────────── */
.mr-hero {
  position: relative;
  padding: 160px 40px 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.mr-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.mr-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.mr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mr-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.mr-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.mr-hero h1 span {
  background: linear-gradient(135deg, var(--purple), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mr-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--silver);
  font-weight: 300;
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

/* ─── SECTION WRAPPER ─────────────────────────────────── */
.mr-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mr-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.mr-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

/* ─── PRODUCT GRID ────────────────────────────────────── */
.mr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mr-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.mr-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.mr-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mr-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mr-product-image-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  color: var(--muted);
}

.mr-product-info {
  padding: 20px;
}

.mr-product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 6px;
}

.mr-product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--silver);
  margin: 0 0 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mr-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mr-product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
}

.mr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.mr-btn:hover {
  background: var(--purple-dim);
  transform: translateY(-1px);
}

.mr-btn-outline {
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: var(--purple);
}

.mr-btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple);
}

/* ─── TALENT MERCH CARDS ──────────────────────────────── */
.mr-talent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mr-talent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.mr-talent-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  overflow: hidden;
}

.mr-talent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mr-talent-card:hover .mr-talent-photo img {
  transform: scale(1.05);
}

.mr-talent-placeholder-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
}

.mr-talent-placeholder-photo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  color: var(--purple);
  opacity: 0.5;
}

.mr-talent-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mr-talent-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.mr-talent-genre {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
  text-transform: capitalize;
}

.mr-talent-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: background 0.2s ease;
}

.mr-talent-cta:hover {
  background: rgba(139, 92, 246, 0.2);
}

/* ─── OFFICIAL UE MERCH ──────────────────────────────── */
.mr-official-section {
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

/* ─── TALENT HEADER (merch store page) ───────────────── */
.mr-talent-header {
  position: relative;
  padding: 140px 40px 60px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.mr-talent-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-2);
  z-index: 0;
}

.mr-talent-header-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mr-talent-header-content {
  position: relative;
  z-index: 1;
}

.mr-talent-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--purple);
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--surface);
}

.mr-talent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mr-talent-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  color: var(--purple);
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
}

.mr-talent-stage-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}

.mr-talent-bio-preview {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ─── CONTACT FORM ───────────────────────────────────── */
.ct-section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.ct-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.1;
}

.ct-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--silver);
  margin: 0 0 48px;
  font-weight: 300;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-full-width {
  grid-column: 1 / -1;
}

.ct-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ct-input,
.ct-select,
.ct-textarea {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--purple);
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: var(--muted);
}

.ct-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355556a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ct-textarea {
  resize: vertical;
  min-height: 140px;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ct-submit-btn:hover {
  background: var(--purple-dim);
  transform: translateY(-1px);
}

/* ─── ALERTS ─────────────────────────────────────────── */
.mr-alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.mr-alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.mr-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ─── JOIN CTA BANNER ────────────────────────────────── */
.mr-join-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.mr-join-banner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.mr-join-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--silver);
  margin: 0 0 24px;
}

/* ─── CONTACT INFO BOX ───────────────────────────────── */
.ct-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.ct-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ct-info-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ct-info-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.ct-info-value a {
  color: var(--purple);
  text-decoration: none;
}

.ct-info-value a:hover {
  text-decoration: underline;
}

/* ─── EMPTY STATE ───────────────────────────────────── */
.mr-empty {
  text-align: center;
  padding: 60px 40px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.mr-empty span {
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  opacity: 0.7;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .mr-hero {
    padding: 120px 20px 60px;
  }
  .mr-section {
    padding: 60px 20px;
  }
  .ct-section {
    padding: 60px 20px;
  }
  .ct-grid {
    grid-template-columns: 1fr;
  }
  .ct-info-grid {
    grid-template-columns: 1fr;
  }
  .mr-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .footer {
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mr-grid {
    grid-template-columns: 1fr;
  }
}