/* ===============================
   🌌 SPACE DARK CINEMATIC BLUE
================================ */

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;

  /* 🔥 deeper, richer than before */
  background:
    radial-gradient(circle at 30% 20%, #030810 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, #020611 0%, transparent 50%),
    linear-gradient(160deg, #00030a 0%, #01030b 50%, #00030a 100%) !important;
}

/* ✨ subtle cinematic lighting */
body::before {
  content: "";
  position: fixed;
  inset: 200;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 25%, rgba(0,120,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(0,80,200,0.08), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(0,180,255,0.05), transparent 65%);

  z-index: -1;
}

/* ===============================
   🧱 GLOBAL CONTAINER SYSTEM
================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* ===============================
   📏 SECTION SPACING SYSTEM
================================ */

.section {
  margin-top: 70px;
}

.section-tight {
  margin-top: 40px;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}


html, body {
  margin: 0;
  padding: 0;
}

/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}





/* ========================================
   NAVBAR (LOCKED — DO NOT TOUCH)
======================================== */
/* ========================================
   NAVBAR (LOCKED — DO NOT TOUCH)
======================================== */
/* ========================================
   HERO SECTION (ISOLATED)
======================================== */

/* ================= HERO ================= */

/* ================= HERO TITLE ================= */

/* ================= HERO ================= */

.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../images/studio.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 20, 0.6);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

/* TITLE */
.hero-title {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  margin: 0;
}

/* ================= METAL TEXT (FINAL WORKING) ================= */

.top-line,
.bottom-line {
  display: block;
  font-size: 85px;
  letter-spacing: 6px;

  /* 🧠 LAYER 1 = LOGO COLOR DNA */
  /* 🧠 LAYER 2 = METAL TEXTURE */
  background-image: 
    linear-gradient(90deg, #4da6ff, #ffffff, #ff4d94),
    url("../images/metal.jpg");

  background-size: cover;
  background-position: center;

  /* 🔥 THIS BLENDS COLOR INTO METAL */
  background-blend-mode: overlay;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 💀 DEPTH */
  text-shadow:
    0 2px 2px rgba(0,0,0,0.6),
    0 6px 18px rgba(0,0,0,0.9);
}


/* VAULT POSITION */
.bottom-line {
  width: 60%;
  margin: 10px auto 0;
}

/* SUBTITLE */
.hero-subtitle {
  margin-top: 20px;
  color: #ccc;
  font-size: 16px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #4da6ff, #ff4d94);
  color: #fff;
}

.btn-secondary {
  border: 1px solid #aaa;
  color: #fff;
}
.glass-title {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 16px;

  /* 🧊 slight DARK glass (this is the fix) */
  background: rgba(10, 15, 30, 0.25);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* ✨ edge highlight (makes it visible) */
  border: 1px solid rgba(255,255,255,0.15);

  /* 💀 separation from background */
  box-shadow:
    0 8px 30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.hero-subtext {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;

  background: linear-gradient(90deg, #8fd3ff, #c084fc, #6ee7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 8px rgba(120, 200, 255, 0.4),
    0 0 16px rgba(180, 120, 255, 0.3);

  opacity: 0.9;
}

.hero-subtext span {
  display: block;
  font-size: 0.95rem;

  background: linear-gradient(90deg, #ffffff, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 6px rgba(255,255,255,0.4);
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-subtext {
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
.cta-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;
}
.primary {
  background: transparent;
  color: #a5f3fc;
  border: 1px solid rgba(165, 243, 252, 0.5);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}


.secondary {
  background: transparent;
  color: #a5f3fc;
  border: 1px solid rgba(165, 243, 252, 0.5);

  backdrop-filter: blur(6px);
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.primary:hover {
  background: rgba(255, 60, 60, 0.12);
  border-color: #ff4d4d;

  box-shadow:
    0 0 15px rgba(255, 60, 60, 0.5),
    0 0 30px rgba(255, 60, 60, 0.3);

  color: #ffb3b3;

  transform: translateY(-3px) scale(1.05);
}



.secondary:hover {
  background: rgba(165, 243, 252, 0.1);
  border-color: #6ee7ff;

  box-shadow:
    0 0 15px rgba(110, 231, 255, 0.4);
}
.cta-btn:active {
  transform: scale(0.95);
}
.cta-btn {
  position: relative;
  z-index: 1;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;

  background: conic-gradient(
    from 0deg,
    #00f0ff,
    #ff003c,
    #00f0ff
  );

  opacity: 0;
  filter: blur(6px);

  z-index: -1;
}
.orbit::before {
  opacity: 1;
  animation: orbitSpin 2s linear;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-btn::before {
  mix-blend-mode: screen;
}
.orbit {
  transform: scale(1.03);
}


/* ================= HERO ================= */
/* ================= HERO ================= */
/* ================= HERO ================= */
/* ================= HERO ================= */
/* ================= HERO ================= */
/* ================= HERO ================= */
/* ===== DESKTOP SAFETY ===== */
/* ================= RESET / SAFETY ================= */
/* =========================
   GLOBAL RESPONSIVE FIX
   ========================= */

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   HERO / GLASS PANEL SCALE
   ========================= */

.hero {
  align-items: flex-start;
  padding-top: 60px;
}


.glass-panel {
  width: clamp(280px, 90%, 800px);
  padding: clamp(20px, 4vw, 60px);
  border-radius: 20px;
}

/* =========================
   TITLE (DOPE TONE VAULT)
   ========================= */

.top-line,
.bottom-line {
  font-size: clamp(28px, 6vw, 85px);
  letter-spacing: clamp(2px, 1vw, 6px);
}

/* =========================
   BUTTONS
   ========================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-buttons button {
  padding: 10px 18px;
  font-size: clamp(12px, 2.5vw, 16px);
}








@media (max-width: 768px) {
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: black; /* fallback */
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
}
body {
  margin: 0;
}


/* 🟦🟦🟦 CREATE SYSTEM UI 🟦🟦🟦 */

/* 🟥 CREATE BUTTON */
.create-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  background: linear-gradient(135deg, #00f5a0, #8a2be2);
  color: white;

  cursor: pointer;
}


.create-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #111;
  padding: 15px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.create-panel.active {
  display: flex;
}

.create-panel button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
/* 🟦🟦🟦 CREATE FORM 🟦🟦🟦 */


.create-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.create-form input,
.create-form select {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.create-form button {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(45deg,#00f0ff,#ff00f0);
  color: white;
  cursor: pointer;
}
.create-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.create-form h2 {
  text-align: center;
  margin-bottom: 10px;
}

.create-form label {
  font-size: 12px;
  opacity: 0.8;
}

.create-form input,
.create-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.create-form textarea {
  resize: none;
  height: 80px;
}

.upload-btn {
  margin-top: 10px;
  padding: 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #00ffcc, #ff00cc);
  color: #000;
  font-weight: bold;
}
/* 🔒 hidden by default */
.create-panel,
#createFormContainer {
  display: none;
}

/* 🟥 BUTTON INTERACTION */
.create-btn:hover {
  transform: scale(1.1);
}

.create-btn:active {
  transform: scale(0.95);
}
/* 🟥 CREATE PANEL (hidden by default) */
.create-panel {
  display: none;
}
/* 🟥 PANEL ACTIVE STATE */
.create-panel.active {
  display: flex;
}


.file-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.file-tools li {
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
  color: white;
}

.file-tools button {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
}
/* 🟩 PAGE CENTER FIX */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0f;
  color: white;

  
  min-height: 100vh;
}

/* 🟩 FORM CARD */
.create-form {
  width: 100%;
  max-width: 400px;
  margin: auto;
}


/* 🟩 INPUTS */
.create-form input,
.create-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
  outline: none;
}

/* 🟩 BUTTON */
.upload-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(45deg, #00f0ff, #ff00c8);
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.form-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
#fileList li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  background: rgba(255,255,255,0.05);
  padding: 8px;
  border-radius: 8px;
}

#fileList button {
  margin-left: 5px;
  cursor: pointer;
}
/* hidden by default */
.create-panel {
  display: none;
}

/* hidden by default */
.create-panel {
  position: fixed;
  bottom: 100px;
  right: 20px;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: all 0.3s ease;
}

.create-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* 📱 REAL MOBILE APP MODE */
/* 🔥 FINAL MOBILE OVERRIDE */
@media (max-width: 768px) {

  .form-page {
    display: block !important;
    width: 100%;
    height: 100dvh;
  }

  .create-form {
    width: 100% !important;
    height: 100dvh !important;

    max-width: 100% !important;
    margin: 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;

    padding: 20px;

    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

}
@media (max-width: 768px) {

  body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .form-page {
    display: block !important;
    width: 100% !important;
    height: 100vh !important;
  }

  .create-form {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    max-width: 100% !important;
    margin: 0 !important;

    border-radius: 0 !important;
    padding: 20px !important;

    background: rgba(0,0,0,0.95) !important; /* force visible */

    box-shadow: none !important;

    overflow-y: auto !important;
  }

}
@media (max-width: 768px) {

  .create-form {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100dvh; /* better than 100vh on phones */

    padding: 16px;

    border-radius: 0;
    box-shadow: none;

    overflow-y: auto;

    background: linear-gradient(180deg, #0b0b0f, #0f172a);
  }

}
.create-form {
  -webkit-overflow-scrolling: touch;
}
body {
  overflow-y: auto;
}
#beatsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.beat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px;
  transition: 0.3s;
}

.beat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}

.beat-info h3 {
  margin: 0;
}

.beat-info p {
  font-size: 12px;
  opacity: 0.7;
}
#createBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: linear-gradient(135deg, #00f0ff, #7a5cff);
  color: white;
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  border: none;

  z-index: 9999; /* 💀 THIS IS THE KEY */
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}
/* 🟥🟥🟥 🔴 OVERRIDE BROKEN PANEL SYSTEM */

@media (max-width: 768px) {

  .mobile-panel {
    left: 0 !important;
    right: auto !important;

    transform: translateX(-100%) !important; /* force hidden */
    transition: transform 0.35s ease !important;
  }

  .mobile-panel.active {
    transform: translateX(0) !important; /* slide in */
  }

}
/* 🟥🟥🟥 🔴 RIGHT SLIDE PANEL (OVERRIDE) */

@media (max-width: 768px) {

  .mobile-panel {
    left: auto !important;
    right: 0 !important;

    transform: translateX(100%) !important; /* start outside right */
    transition: transform 0.35s ease !important;
  }

  .mobile-panel.active {
    transform: translateX(0) !important; /* slide in */
  }

}
/* 🔴🟥 BEAT CARD UPGRADE 🟥🔴 */

.beat-card {
  background: rgba(20, 20, 40, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.beat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}
/* 🔵 PLAY OVERLAY */

/* 🎧 COVER MUST BE RELATIVE */
.beat-cover {
  position: relative;
}

/* 🔥 PLAY BUTTON DEFAULT (HIDDEN) */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);

  font-size: 28px;
  color: white;

  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* ✨ SHOW ON HOVER */
.beat-cover:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* 🔥 KEEP VISIBLE WHEN PLAYING */
.play-btn.playing {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.1);
  pointer-events: auto;
}

/* ✨ SHOW ON HOVER */
.beat-cover:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.play-btn {
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.beat-cover:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}


.beat-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* 🟢 BUY BUTTON */

.buy-btn {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(45deg, #00c8ff, #7a5cff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  transform: scale(1.08);
}
.play-btn {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 🎬 CLICK EFFECT */
.play-btn:active {
  transform: translate(-50%, -50%) scale(0.85);
}

/* 🔥 MORPH FEEL */
.play-btn.playing {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ✨ SMOOTH ICON CHANGE FEEL */
.play-btn {
  transition: all 0.25s ease;
}
/* 🔥 ACTION WRAPPER */
.beat-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* 💎 BASE BUTTON STYLE */
.beat-actions button {
  flex: 1;
  padding: 8px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 BUY BUTTON (PRIMARY) */
.buy-btn {
  background: linear-gradient(135deg, #00eaff, #0077ff);
  color: white;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.4);
}

/* ✨ BUY HOVER */
.buy-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.8);
}

/* 💠 DOWNLOAD BUTTON (GLASS STYLE) */
.download-btn {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

/* ✨ DOWNLOAD HOVER */
.download-btn:hover {
  background: rgba(0, 234, 255, 0.15);
  border-color: #00eaff;
  transform: translateY(-2px) scale(1.03);
}
/* 💰 PRICE BUTTON (MAIN CTA) */
.price-btn {
  flex: 1;
  background: linear-gradient(135deg, #00eaff, #0077ff);
  color: white;
  border: none;
  padding: 8px 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 0 12px rgba(0,200,255,0.4);
}

.price-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(0,200,255,0.8);
}

/* 🆓 FREE DOWNLOAD (GLASS STYLE) */
.free-btn {
  flex: 1;
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
  backdrop-filter: blur(6px);
}

.free-btn:hover {
  background: rgba(0,234,255,0.15);
  border-color: #00eaff;
  transform: translateY(-2px) scale(1.05);
}
.play-btn,
.buy-btn,
.free-btn {
  cursor: pointer;
  user-select: none;
}

.beat-card {
  cursor: pointer;
}
/* =========================
   🔥 HERO RESTORE (FRONT PAGE)
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* if you're using background section */
.hero-section,
.hero-wrapper {
  min-height: 100vh;
  height: 100vh;
}

/* =========================
   🔥 BEATS / CARDS RESTORE
========================= */

.beats-container,
.beat-grid,
.cards-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

/* restore card size */
.beat-item,
.beat-card-preview {
  min-width: 220px;
  max-width: 220px;
  flex: 0 0 auto;
}

/* images back to life */
.beat-item img,
.beat-card-preview img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.section {
  margin: 40px 20px;
  color: white;
}

.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

/* BIG CARDS (Featured + Popular) */
.card-large {
  min-width: 220px;
  height: 140px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.card-large:hover {
  transform: scale(1.05);
}

/* SMALL GRID CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
}

.card-small {
  height: 120px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

/* overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 14px;
}

.explore {
  text-align: center;
  margin-top: 20px;
}

.explore button {
  padding: 10px 25px;
  border-radius: 20px;
  background: linear-gradient(45deg, #0f0f2f, #7a0000);
  color: white;
  border: none;
}
/* =========================
   🔥 GLOBAL MOBILE SPACING FIX
========================= */

@media (max-width: 768px) {

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

}
/* MOBILE DEBUG MODE - MAKE PAGE SCROLLABLE */
@media (max-width: 768px) {
  /* 1. Kill the bottom padding that was reserving space */
  body {
    padding-bottom: 0 !important;
  }

  /* 2. Make player flow with page instead of fixed */
  .global-player {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 20px auto !important;
    width: 96% !important;
  }

  /* 3. Remove the root var that blocked scrolling */
  :root {
    --player-height: 0px !important;
  }
}
/* MOBILE - FIX PROGRESS BAR + TIME OVERFLOW */
@media (max-width: 768px) {
  /* 1. Clip everything inside the player */
  .global-player {
    overflow: hidden !important;
    padding: 10px 14px !important; /* 👈 More horizontal padding */
  }

  /* 2. Force progress wrap to stay inside */
  .gp-center {
    width: 100% !important;
    padding: 0 4px !important; /* 👈 Inner breathing room */
  }

  .gp-progress-wrap {
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    align-items: center !important;
  }

  /* 3. Shrink time labels so they don't push out */
  #gpCurrent,
  #gpDuration {
    font-size: 9px !important;
    min-width: 24px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
  }

  /* 4. Make sure bar doesn't overflow */
  #gpProgress {
    min-width: 0 !important; /* 👈 Lets flexbox shrink it */
    height: 3px !important;
    margin: 0 !important;
  }

  /* 5. Center the whole controls section */
  .gp-controls {
    margin-bottom: 2px !important;
  }
}
/* MOBILE PROFILE */


.mobile-profile-avatar,
.mobile-default-avatar{


width:52px;
height:52px;


border-radius:50%;


display:flex;
align-items:center;
justify-content:center;


margin:auto;


overflow:hidden;


border:2px solid rgba(255,255,255,0.15);


background:rgba(255,255,255,0.06);


backdrop-filter:blur(20px);
}


.mobile-profile-avatar{
object-fit:cover;
}


.mobile-default-avatar{
font-size:20px;
color:white;
}


/* =========================================
   🔥 PERFECT SECTION LEVELING
========================================= */


/* Featured + Latest same level as Arsenal */
.featured-section,
.latest-section{


    padding-left: 14px !important;
    padding-right: 14px !important;


    margin-left: 0 !important;


    box-sizing: border-box;
}


/* Arsenal alignment */
.arsenal-section{


    padding-left: 14px !important;


    margin-left: 0 !important;
}


/* Remove random row offsets */
.latest-row,
.featured-container{


    margin-left: 0 !important;
    padding-left: 0 !important;
}


/* =========================================
   🔥 TITLE WRAPPERS
========================================= */


.section-title-wrap{


    width: 100%;


    padding-left: 0 !important;


    margin-bottom: 18px;


    box-sizing: border-box;
}


/* =========================================
   🔥 TITLE STYLE
========================================= */


.section-title{


    position: relative;


    margin: 0 !important;
    padding: 0 !important;


    display: flex;
    align-items: center;


    gap: 10px;


    width: fit-content;


    color: #ffffff;


    text-shadow:
    0 0 10px rgba(255,140,0,.35),
    0 0 20px rgba(255,80,0,.15);
}


/* =========================================
   🔥 FIRE ICON
========================================= */


.title-icon{


    display: inline-flex;
    align-items: center;
    justify-content: center;


    animation:
    fireFloat 2.2s ease-in-out infinite;
}


/* =========================================
   🔥 RED/YELLOW UNDERLINE
========================================= */


.section-title::after{


    content: "";


    position: absolute;


    left: 0;
    bottom: -8px;


    width: 100%;


    height: 3px;


    border-radius: 999px;


    background:
    linear-gradient(
        90deg,
        #ff3300 0%,
        #ff7b00 35%,
        #ffd000 70%,
        transparent 100%
    );


    box-shadow:
    0 0 12px rgba(255,80,0,.45),
    0 0 22px rgba(255,180,0,.25);


    opacity: .95;
}


/* =========================================
   🔥 FLOAT ANIMATION
========================================= */


@keyframes fireFloat{


    0%{
        transform:
        translateY(0px)
        scale(1);
    }


    50%{
        transform:
        translateY(-2px)
        scale(1.06);
    }


    100%{
        transform:
        translateY(0px)
        scale(1);
    }
}


/* =========================================
   🔥 GET UNIQUE — BURNING RED
========================================= */


.latest-card:first-child{


    position: relative;


    border:
    1px solid rgba(255,60,0,.45) !important;


    box-shadow:
    0 0 18px rgba(255,40,0,.25),
    0 0 40px rgba(255,0,0,.12);
}


/* burning aura */
.latest-card:first-child::before{


    content:"";


    position:absolute;


    inset:-2px;


    border-radius: inherit;


    background:
    linear-gradient(
        135deg,
        rgba(255,30,0,.35),
        rgba(255,140,0,.18),
        rgba(255,0,0,.28)
    );


    filter: blur(18px);


    opacity:.9;


    z-index:-1;


    animation:
    burnPulse 2.2s ease-in-out infinite;
}


/* title glow */
.latest-card:first-child .track-title,
.latest-card:first-child h3{


    color:#fff;


    text-shadow:
    0 0 10px rgba(255,60,0,.8),
    0 0 24px rgba(255,120,0,.45);
}


/* price glow */
.latest-card:first-child .new{


    color:#ff5e00 !important;


    text-shadow:
    0 0 12px rgba(255,80,0,.7);
}


/* button glow */
.latest-card:first-child .buy-btn,
.latest-card:first-child button{


    background:
    linear-gradient(
        135deg,
        #ff2a00,
        #ff7b00
    ) !important;


    box-shadow:
    0 0 20px rgba(255,60,0,.45),
    inset 0 -2px 5px rgba(0,0,0,.25);


    color:#fff !important;
}


/* =========================================
   🔥 BURN PULSE
========================================= */


@keyframes burnPulse{


    0%{


        opacity:.65;


        transform:scale(1);
    }


    50%{


        opacity:1;


        transform:scale(1.015);
    }


    100%{


        opacity:.65;


        transform:scale(1);
    }
}


/* =========================================
   🔥 FEATURED SECTION BALANCE
========================================= */


.featured-track{


    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* =========================================
   🔥 LATEST SECTION BALANCE
========================================= */


.latest-track,
.latest-row{


    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* =========================================
   📱 MOBILE BALANCE
========================================= */


@media(max-width:768px){


    .featured-section,
    .latest-section,
    .arsenal-section{


        padding-left:10px !important;
        padding-right:10px !important;
    }


    .section-title-wrap{


        margin-bottom:14px;
    }


    .section-title{


        font-size:20px;
    }


}
/* =========================================
   🔥 LATEST TITLE SPACING FIX
========================================= */


.latest-section .section-title{


    margin-bottom: 26px !important;


    position: relative;
    z-index: 20;
}


/* 🔥 extra breathing room above cards */
.latest-row{


    margin-top: 8px;
}


/* 📱 mobile */
@media(max-width:768px){


    .latest-section .section-title{


        margin-bottom: 22px !important;
    }


}
/* =========================================
   🔥 CENTER FEATURED + LATEST TITLES
   PC + MOBILE
========================================= */


/* =========================================
   🔥 SECTION TITLE WRAP
========================================= */


.featured-section,
.latest-section{


    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================
   🔥 TITLES CENTERED
========================================= */


.featured-section .section-title,
.latest-section .section-title{


    margin-left: auto !important;
    margin-right: auto !important;


    justify-content: center;
    text-align: center;


    width: fit-content;
}


/* =========================================
   🔥 UNDERLINE CENTER
========================================= */


.featured-section .section-title::after,
.latest-section .section-title::after{


    left: 50%;
    transform: translateX(-50%);
}


/* =========================================
   🔥 KEEP CONTENT FULL WIDTH
========================================= */


.featured-container,
.latest-row{


    width: 100%;
}
/* ===============================
📱 CENTER ARSENAL + TRENDING TITLES
=============================== */


@media (max-width:768px){


    .arsenal-section .section-title,
    .right-panel .section-title{


        width:100%;


        display:flex;
        align-items:center;
        justify-content:center;


        text-align:center;


        margin-left:0 !important;
        padding-left:0 !important;
    }


    /* 🔥 underline centered too */
    .arsenal-section .section-title::after,
    .right-panel .section-title::after{


        left:50% !important;


        transform:translateX(-50%);
    }
}
/* ===============================
   🔥 LATEST SCROLL — RP STRUCTURE
=============================== */
.latest-section {
  overflow: visible !important;
}

/* WRAPPER: This is the viewport */
#latestListWrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

#latestListWrap::-webkit-scrollbar {
  display: none;
}

#latestListWrap:active {
  cursor: grabbing;
}

/* SCROLLER: This grows wide */
#latestList.rp-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  padding: 10px 20px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: max-content !important; /* 🔥 KEY: Ignores parent width */
}

/* Cards must not shrink */
#latestList.rp-scroll .rp-card {
  flex: 0 0 140px !important;
  scroll-snap-align: center;
  width: 140px;
}

/* Kill old rules */
.latest-section .latest-grid,
.latest-section .latest-row {
  display: none !important;
}
/* ================= DOWNLOAD GATE ================= */
.download-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-gate.active {
  opacity: 1;
  visibility: visible;
}

.gate-content {
  background: linear-gradient(180deg, #0a0e27 0%, #050714 100%);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 24px;
  padding: 40px 32px 28px;
  width: 90%;
  max-width: 380px;
  position: relative;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 80px rgba(0, 102, 255, 0.12);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-gate.active .gate-content {
  transform: translateY(0) scale(1);
}

.gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #8892b0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 14px;
}

.gate-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.15);
}

.gate-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #0066ff 0%, #e10600 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(0, 102, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
}

.gate-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #0066ff, #e10600);
  border-radius: 22px;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.5;
}

.gate-icon i {
  font-size: 28px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.gate-content h3 {
  font-family: 'Orbitron', sans-serif;
  color: white;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.gate-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #8892b0;
  font-size: 14px;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.5;
  font-weight: 400;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 16px;
  color: #0066ff;
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
}

.input-group input {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 16px 0 44px;
  color: white;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.25s;
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.18);
}

.input-group input::placeholder {
  color: #5a6480;
}

.gate-btn {
  height: 50px;
  background: linear-gradient(90deg, #0066ff 0%, #0052cc 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.28);
  position: relative;
  overflow: hidden;
}

.gate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.gate-btn:hover::before {
  left: 100%;
}

.gate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.38);
}

.gate-btn:active {
  transform: translateY(0);
}

.gate-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5a6480;
  font-size: 11.5px;
  font-family: 'Poppins', sans-serif;
  margin: 18px 0 0;
  font-weight: 400;
}

.gate-privacy i {
  font-size: 10px;
}

.gate-skip {
  width: 100%;
  background: none;
  border: none;
  color: #6b7690;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
  padding: 8px;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 400;
}

.gate-skip:hover {
  color: #a0abc0;
}
/* PC ONLY - ADD RIGHT MARGIN TO MAIN LAYOUT */
@media (min-width: 769px) {
  .main-layout {
    margin-right: 24px !important;
    gap: 24px !important; /* Extra space between left-panel and right-panel */
  }
  
  /* If you want just the right panel to have breathing room */
  .right-panel {
    margin-right: 24px !important;
  }
}
/* iPAD AIR + TABLETS - FORCE RIGHT SPACING */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) {
  
  body {
    padding-right: 24px !important; /* Hits the whole page */
  }
  
  .main-layout {
    max-width: calc(100% - 24px) !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }
  
  /* Make sure right panel doesn't stick */
  .right-panel,
  .notice-board {
    margin-right: 0 !important; /* Reset */
    margin-left: 16px !important; /* Push it left instead */
  }
}
/* HIDE TITLE ON MOBILE ONLY */
@media (max-width: 768px) {
  #globalPlayerUI #gpTitle {
    display: none !important;
  }
  
  #globalPlayerUI .gp-left {
    gap: 0 !important;
  }
}
/* MORE GAP BETWEEN PLAYER CONTROLS */
#globalPlayerUI .gp-controls {
  gap: 20px !important; /* Was probably 8-12px, now 20px */
}

/* If you want just prev/play/next with more space */
#globalPlayerUI #gpPrev,
#globalPlayerUI #gpPlay,
#globalPlayerUI #gpNext {
  margin: 0 4px !important; /* Extra 8px total between them */
}
