/* ============================================================
   DON FIGGA RECORDS - DIRECT TO CONSUMER MIXTAPE PLATFORM
   Brand Palettes: Money Green, Chrome Silver & Deep Obsidian
   Equipped with Instant-Web-CMS Visual Engine
   ============================================================ */

:root {
  /* Don Figga Records Palette */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  
  --accent-primary: #1a6b2a;
  --accent-secondary: #22883a;
  --accent-bright: #2ecc71;
  --accent-glow: rgba(26, 107, 42, 0.45);
  
  --chrome-light: #ffffff;
  --chrome-mid: #c8c8c8;
  --chrome-dark: #666666;
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border-color: #222222;
  --border-glow: rgba(34, 136, 58, 0.35);

  --font-bebas: 'Bebas Neue', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* Ambient Glow Overlays */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  opacity: 0.25;
}

.glow-top {
  top: 0;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
}

.glow-middle {
  top: 45%;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-primary), transparent 70%);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-green {
  color: var(--accent-bright) !important;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   TOP NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  transition: all var(--transition-fast);
}

body.admin-active .navbar {
  top: 60px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-bebas);
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-brand .brand-don {
  color: var(--chrome-light);
}

.nav-brand .brand-figga {
  color: var(--accent-bright);
  text-shadow: 0 0 15px var(--accent-glow);
}

.nav-brand .brand-rec {
  color: var(--chrome-mid);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--chrome-mid);
  text-decoration: none;
  font-family: var(--font-oswald);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--accent-bright);
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) !important;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-family: var(--font-oswald) !important;
  font-size: 0.9rem !important;
  letter-spacing: 1.5px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: all var(--transition-fast) !important;
}

.nav-cta-btn:hover {
  background: var(--accent-bright) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.6);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 75% 35%, #0d3816 0%, #000000 70%);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 107, 42, 0.25);
  border: 1px solid var(--accent-secondary);
  color: var(--accent-bright);
  font-family: var(--font-oswald);
  font-size: 0.8rem;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-bebas);
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(26, 107, 42, 0.5);
}

.hero-subhead {
  font-family: var(--font-oswald);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--chrome-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #cccccc;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-pricing-box {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent-bright);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.price-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.price-val {
  font-family: var(--font-bebas);
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 25px var(--accent-glow);
}

.price-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-type {
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent-bright);
}

.price-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn-hero-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-oswald);
  font-size: 1.15rem;
  letter-spacing: 2px;
  padding: 18px 32px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 8px 35px var(--accent-glow);
  transition: all var(--transition-fast);
}

.btn-hero-buy:hover {
  background: var(--accent-bright);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(46, 204, 113, 0.6);
}

.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--chrome-mid);
}

/* Hero Visual & Artwork */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vinyl-glow-backdrop {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.artwork-card {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(26, 107, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: floatArt 5s ease-in-out infinite;
  max-width: 440px;
}

@keyframes floatArt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-artwork-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.artwork-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-secondary);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-oswald);
  font-size: 0.78rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
}

/* ============================================================
   AUDIO PLAYER STRIP
   ============================================================ */
.player-strip-section {
  background: #070707;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 900;
  backdrop-filter: blur(10px);
}

body.admin-active .player-strip-section {
  top: 130px;
}

.player-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.player-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--chrome-light);
}

.player-track-info {
  flex: 1;
  font-size: 0.95rem;
  color: #ffffff;
}

.track-producer {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 6px;
}

.audio-control-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 1px solid var(--accent-bright);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.audio-play-btn:hover {
  background: var(--accent-bright);
  color: #000000;
  transform: scale(1.08);
}

.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.wave-bar {
  width: 3px;
  height: 6px;
  background: var(--accent-bright);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.sound-wave.playing .wave-bar:nth-child(1) { animation: wave 0.8s ease-in-out infinite 0.1s; }
.sound-wave.playing .wave-bar:nth-child(2) { animation: wave 0.9s ease-in-out infinite 0.3s; }
.sound-wave.playing .wave-bar:nth-child(3) { animation: wave 0.7s ease-in-out infinite 0.2s; }
.sound-wave.playing .wave-bar:nth-child(4) { animation: wave 1.1s ease-in-out infinite 0.4s; }
.sound-wave.playing .wave-bar:nth-child(5) { animation: wave 0.8s ease-in-out infinite 0.1s; }
.sound-wave.playing .wave-bar:nth-child(6) { animation: wave 1.0s ease-in-out infinite 0.3s; }
.sound-wave.playing .wave-bar:nth-child(7) { animation: wave 0.7s ease-in-out infinite 0.2s; }
.sound-wave.playing .wave-bar:nth-child(8) { animation: wave 0.9s ease-in-out infinite 0.4s; }

@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 24px; }
}

.audio-timer {
  font-family: var(--font-oswald);
  font-size: 0.8rem;
  color: var(--chrome-mid);
  letter-spacing: 1px;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-bebas);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   TRACKLIST & PRODUCT SECTION
   ============================================================ */
.tracklist-section {
  background: #050505;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.product-specs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 140px;
}

.specs-cover {
  position: relative;
}

.specs-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.specs-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-primary);
  border: 1px solid var(--accent-bright);
  font-family: var(--font-oswald);
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 2px;
  color: #ffffff;
}

.specs-body {
  padding: 28px;
}

.specs-title {
  font-family: var(--font-bebas);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.specs-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.specs-list {
  list-style: none;
  margin-bottom: 28px;
}

.specs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: var(--chrome-mid);
}

.specs-list li:last-child {
  border-bottom: none;
}

.btn-specs-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-oswald);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  padding: 16px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all var(--transition-fast);
}

.btn-specs-buy:hover {
  background: var(--accent-bright);
  color: #000000;
}

/* Tracklist Container */
.tracklist-wrapper {
  background: #090909;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
}

.tracklist-header-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-oswald);
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  padding-bottom: 14px;
  border-bottom: 1px solid #1f1f1f;
  margin-bottom: 8px;
}

.track-items-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #141414;
  border-radius: 4px;
  transition: background var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.track-row:hover {
  background: #141414;
}

.track-row.active-track {
  background: rgba(26, 107, 42, 0.18);
  border-left: 3px solid var(--accent-bright);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-num {
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  color: var(--accent-bright);
  min-width: 24px;
}

.track-mini-play {
  background: #181818;
  border: 1px solid #333;
  color: var(--chrome-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.track-row:hover .track-mini-play {
  background: var(--accent-primary);
  border-color: var(--accent-bright);
  color: #ffffff;
}

.track-names {
  display: flex;
  flex-direction: column;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.track-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.track-time {
  font-family: var(--font-oswald);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.steps-section {
  background: #000000;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 40px 28px;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-secondary);
}

.step-badge {
  font-family: var(--font-bebas);
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  color: var(--chrome-light);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   CHECKOUT & DOWNLOAD PORTAL SECTION
   ============================================================ */
.checkout-section {
  background: radial-gradient(circle at 50% 50%, #0c2b12 0%, #000000 70%);
  padding: 100px 0;
}

.checkout-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #0e0e0e;
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(26, 107, 42, 0.35);
}

.checkout-header {
  text-align: center;
  margin-bottom: 32px;
}

.checkout-logo-wrap {
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.checkout-title {
  font-family: var(--font-bebas);
  font-size: 2.4rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 6px;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-summary-box {
  background: #050505;
  border: 1px solid #222222;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 32px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid #141414;
}

.summary-line strong {
  color: #ffffff;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  margin-top: 8px;
}

.summary-total-line span {
  font-family: var(--font-oswald);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--chrome-light);
}

.total-amount {
  font-family: var(--font-bebas);
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 20px var(--accent-glow);
}

.btn-checkout-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  border: none;
  padding: 20px;
  font-family: var(--font-oswald);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 8px 30px var(--accent-glow);
  transition: all var(--transition-fast);
}

.btn-checkout-primary:hover {
  background: var(--accent-bright);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 204, 113, 0.6);
}

.checkout-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.payment-methods-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 1.6rem;
  color: var(--chrome-dark);
}

/* ============================================================
   SUCCESS / POST-PAYMENT DOWNLOAD PORTAL
   ============================================================ */
.download-portal {
  display: none;
  max-width: 650px;
  margin: 0 auto;
  background: #0a140d;
  border: 2px solid var(--accent-bright);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(46, 204, 113, 0.4);
}

.download-portal.active-view {
  display: block;
  animation: fadeInPortal 0.4s ease-out;
}

@keyframes fadeInPortal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.portal-badge-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-bright);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px var(--accent-bright);
}

.portal-title {
  font-family: var(--font-bebas);
  font-size: 3rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 8px;
}

.portal-subtitle {
  font-size: 1.05rem;
  color: var(--chrome-mid);
  margin-bottom: 32px;
}

.portal-box {
  background: #000000;
  border: 1px solid #1a3820;
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.portal-file-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.portal-zip-icon {
  font-size: 3rem;
  color: var(--accent-bright);
}

.portal-file-meta h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.portal-file-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-download-master {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-oswald);
  font-size: 1.15rem;
  letter-spacing: 2px;
  padding: 18px 24px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-download-master:hover {
  background: var(--accent-bright);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.6);
}

.download-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #1a1a1a;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.portal-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040404;
  border-top: 1px solid #161616;
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-bebas);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-block h4, .footer-legal-block h4 {
  font-family: var(--font-oswald);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--chrome-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links-block ul {
  list-style: none;
}

.footer-links-block li {
  margin-bottom: 10px;
}

.footer-links-block a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links-block a:hover {
  color: var(--accent-bright);
}

.footer-legal-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  border: 1px dashed rgba(34, 136, 58, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.footer-admin-link:hover {
  background: rgba(34, 136, 58, 0.15);
  color: var(--accent-bright);
}

/* ============================================================
   CMS ADMIN BAR & CONTROLS
   ============================================================ */
.admin-bar {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100vw;
  height: 60px;
  background: #0a0a0f;
  border-bottom: 2px solid var(--accent-bright);
  z-index: 2100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.8);
  transition: top var(--transition-smooth);
}

body.admin-active .admin-bar {
  top: 0;
}

.admin-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--accent-bright);
  font-family: var(--font-oswald);
  letter-spacing: 1px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  margin: 0 0.3rem;
}

.admin-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.admin-btn:hover {
  background: rgba(255,255,255,0.15);
}

.admin-btn.btn-save {
  background: rgba(34, 136, 58, 0.2);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.admin-btn.btn-save:hover {
  background: var(--accent-bright);
  color: #000000;
}

.admin-btn.btn-export {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.admin-btn.btn-export:hover {
  background: #ffffff;
  color: #000000;
}

.admin-btn.btn-exit {
  background: rgba(255, 56, 56, 0.15);
  border-color: #ff3838;
  color: #ff3838;
}

.admin-btn.btn-exit:hover {
  background: #ff3838;
  color: #ffffff;
}

/* Inline Edit Outlines */
body.admin-active .editable {
  outline: 1px dashed rgba(46, 204, 113, 0.5);
  outline-offset: 4px;
  cursor: text;
  transition: outline var(--transition-fast);
}

body.admin-active .editable:hover {
  outline: 2px dashed var(--accent-bright);
  background: rgba(46, 204, 113, 0.05);
}

body.admin-active .editable:focus {
  outline: 2px solid var(--accent-bright);
  background: rgba(46, 204, 113, 0.08);
}

.editable-img-wrapper {
  position: relative;
}

body.admin-active .editable-img-wrapper::after {
  content: 'Swap Artwork';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000000;
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.9;
  z-index: 10;
}

/* Card Manager Controls (Hover buttons) */
.card-manager-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  gap: 6px;
  z-index: 100;
}

body.admin-active .card-manager-actions {
  display: flex;
}

.card-manage-btn {
  background: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.card-manage-btn.btn-card-add:hover {
  background: var(--accent-bright);
  color: #000000;
}

.card-manage-btn.btn-card-delete:hover {
  background: #ff3838;
  color: #ffffff;
}

/* Theme Sidebar Panel */
.theme-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100vh;
  background: #0a0a0f;
  border-left: 2px solid var(--accent-bright);
  z-index: 2200;
  padding: 6rem 2rem 2rem;
  box-shadow: -10px 0 35px rgba(0,0,0,0.8);
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.theme-panel.active {
  right: 0;
}

.theme-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.theme-panel-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.theme-group {
  margin-bottom: 2rem;
}

.theme-group h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.theme-control-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.theme-control-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.theme-color-input {
  width: 40px;
  height: 30px;
  border: 1px solid #333;
  background: none;
  cursor: pointer;
  border-radius: 4px;
}

.theme-range-input {
  width: 120px;
  accent-color: var(--accent-bright);
}

/* Floating Formatting Toolbar */
.floating-toolbar {
  position: absolute;
  display: none;
  background: #11111d;
  border: 1px solid var(--accent-bright);
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
  z-index: 2300;
  align-items: center;
  gap: 2px;
}

.toolbar-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.toolbar-btn:hover {
  background: #222;
  color: #ffffff;
}

.toolbar-color-picker {
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0 4px;
  border-radius: 50%;
}

/* Media Library Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #0d0d12;
  border: 1px solid var(--accent-bright);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
  max-height: 250px;
  overflow-y: auto;
}

.media-thumb {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  background: #000;
  transition: var(--transition-fast);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumb:hover, .media-thumb.selected {
  border-color: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-glow);
}

.media-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  font-size: 0.65rem;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--accent-bright);
  outline: none;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-pricing-box {
    width: 100%;
    max-width: 500px;
  }
  .hero-trust-row {
    justify-content: center;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-specs-card {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .price-details {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .checkout-wrapper {
    padding: 32px 20px;
  }
  .download-portal {
    padding: 32px 20px;
  }
  .player-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ============================================================
   CMS FLOATING QUICK TOGGLE & TOAST NOTIFICATION
   ============================================================ */
.cms-quick-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-oswald);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7), 0 0 15px var(--accent-glow);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.cms-quick-toggle:hover {
  background: var(--accent-bright);
  color: #000000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.6);
}

body.admin-active .cms-quick-toggle {
  background: var(--accent-bright);
  color: #000000;
  border-color: #ffffff;
}

.cms-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0d0d12;
  border: 1px solid var(--accent-bright);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-oswald);
  font-size: 0.95rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--accent-glow);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cms-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

