:root {
  --primary: #38bdf8;
  --text-main: #FFFFFF;
  --text-muted: #EDF2FF;
  --success: #22C55E;
  --warning: #FACC15;
  --danger: #EF4444;
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #061226;
  /* Format link lh3 untuk bypass blokir Google Drive */
  background-image: url('https://lh3.googleusercontent.com/d/1jBN6BWJxHfyLxLRJYV0lL2X6Ls0d5kwz') !important;
  background-size: cover !important;
  background-position: center center !important;
  z-index: -1;
  display: block;
}


body {
  background: transparent;
  color: var(--text-main);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

body.dashboard-mode {
  padding-bottom: 20px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 120px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: appEntry 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 10;
}

@keyframes appEntry {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rgbGlow {
  0% {
    filter: hue-rotate(0deg) blur(15px);
  }

  100% {
    filter: hue-rotate(360deg) blur(15px);
  }
}

#authCheckoutLayer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px 10px;
  position: relative;
  z-index: 10;
}

#dashboardLayer {
  display: none;
  position: relative;
  z-index: 10;
}

#globalLoader {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 38, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #38bdf8;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.btn-admin-top {
  background: rgba(11, 28, 62, 0.8);
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(4px);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-admin-top:hover {
  background: #38bdf8;
  color: #000;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.onboard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 38, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.onboard-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.onboard-box {
  position: relative;
  background: linear-gradient(145deg, #102A57, #0B1C3E);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 24px;
  padding: 35px 30px 30px 30px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 2px 10px rgba(56, 189, 248, 0.1);
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.onboard-overlay.active .onboard-box {
  transform: translateY(0);
}

.onboard-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 5px;
}

.onboard-subtitle {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 25px;
  line-height: 1.5;
}

.onboard-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  background: #081A3A;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.onboard-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.onboard-text h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.onboard-text p {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

.welcome-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: rgba(11, 28, 62, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 35px 25px;
  position: relative;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 2px 10px rgba(56, 189, 248, 0.1);
  display: none;
  z-index: 10;
  animation: revealCard .4s ease-out forwards;
}

.login-card.active {
  display: block;
}

@keyframes revealCard {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

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

.brand-text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(8, 26, 58, 0.7);
  border-radius: 50px;
  padding: 14px 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.input-group:focus-within {
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(8, 26, 58, 0.9);
}

.input-group i.fa-solid,
.input-group i.fa-regular {
  color: #64748b;
  font-size: 14px;
  width: 25px;
}

.input-group input,
.input-group select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.input-group input::placeholder {
  color: #64748b;
  font-weight: 500;
}

.eye-icon {
  position: absolute;
  right: 18px;
  cursor: pointer;
  color: #64748b;
  font-size: 14px;
}

.remember-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  cursor: pointer;
  user-select: none;
  margin-bottom: 20px;
  font-weight: 500;
}

.btn-signin {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.btn-blue {
  background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.55);
  color: #000;
}

.btn-dark-purple {
  background: rgba(38, 35, 77, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
}

.btn-dark-purple:hover {
  background: #38bdf8;
  color: #000;
  border-color: rgba(56, 189, 248, 0.8);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.card-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: #94a3b8;
}

.admin-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.admin-link:hover {
  color: #ffffff;
}

.reminder-text {
  font-size: 11px;
  color: #facc15;
  font-weight: 500;
  text-align: center;
  margin: 15px 0;
  line-height: 1.5;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
  width: 100%;
}

.inner-box {
  background: rgba(8, 26, 58, 0.6);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.acc-number {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
}

.acc-number a {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.admin-input {
  width: 100%;
  background: #060e1a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 14px;
  color: #fff;
  margin-bottom: 12px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
}

.admin-input:focus {
  border-color: #38bdf8;
  outline: none;
}

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

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

  #adminDashboardCard {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px 15px;
  }
}

.hero-banner-header {
  position: sticky;
  top: 24px;
  z-index: 990;
  width: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(6, 18, 38, 0.8) 0%, rgba(21, 11, 46, 0.8) 60%, rgba(56, 189, 248, 0.25) 100%);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero-banner-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.hero-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: moveShine 12s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
}

@keyframes moveShine {
  0% {
    left: -150%;
  }

  40% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.digital-glow-1 {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  filter: blur(30px);
  pointer-events: none;
}

.hero-text-wrapper {
  position: relative;
  z-index: 10;
  max-width: 60%;
  animation: floatingText 4s ease-in-out infinite;
}

@keyframes floatingText {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.hero-title-text {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badge {
  background: rgba(11, 28, 62, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

.hero-badge:hover {
  background: rgba(56, 189, 248, 0.2);
  transform: scale(1.05);
  border-color: #38bdf8;
  color: #38bdf8;
}

.hero-art-container {
  position: absolute;
  z-index: 10;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-visual-art {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatArt 5s ease-in-out infinite;
}

@keyframes floatArt {
  0%, 100% {
    transform: translateY(-5px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

.glass-icon-box {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.glass-icon-box i {
  font-size: 40px;
  background: linear-gradient(135deg, #fff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.5));
}

.art-orbit-1 {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(56, 189, 248, 0.6);
  border-radius: 50%;
  animation: spinOrbit 15s linear infinite;
  z-index: 1;
}

.art-orbit-2 {
  position: absolute;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: 50%;
  animation: spinOrbit 20s linear infinite reverse;
  z-index: 1;
}

@keyframes spinOrbit {
  100% {
    transform: rotate(360deg);
  }
}

.hero-top-right {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
}

a.btn-buat {
  background-color: #25D366;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

a.btn-buat:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.6);
}

.btn-menu {
  background: rgba(11, 28, 62, 0.8);
  border: 1px solid #38bdf8;
  color: #38bdf8;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
  font-size: 16px;
  backdrop-filter: blur(4px);
}

.btn-menu:hover {
  background: #38bdf8;
  color: #000;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  visibility: visible;
  opacity: 1;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100%;
  background-color: rgba(6, 18, 38, 0.95) !important;
  backdrop-filter: blur(20px);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  border-left: 1px solid rgba(56, 189, 248, 0.25);
}

.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.close-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.close-sidebar:hover {
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.sidebar-content::-webkit-scrollbar {
  width: 4px;
}

.menu-group {
  margin-bottom: 25px;
}

.menu-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-left: 10px;
  font-weight: 700;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 4px;
}

.sidebar-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #64748b;
  transition: 0.3s;
}

.sidebar-link:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #fff;
  transform: translateX(5px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  font-weight: 600;
  color: #000;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.sidebar-link:hover i {
  color: #38bdf8;
}

.sidebar-link.active i {
  color: #000;
}

.accordion-header {
  justify-content: space-between;
}

.accordion-header div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-header .chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.sidebar-accordion.open .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
}

.sidebar-accordion.open .accordion-content {
  max-height: 250px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.sidebar-sublink {
  color: #94a3b8;
  text-decoration: none;
  font-size: 12px;
  padding: 10px 0;
  transition: 0.2s;
  display: block;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
  padding-left: 15px;
  margin-bottom: 2px;
}

.sidebar-sublink:hover {
  color: #fff;
  border-left-color: #38bdf8;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-danger:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.text-danger:hover i {
  color: #ef4444;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  margin-top: 15px;
}

.stat-card {
  background: rgba(18, 27, 51, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-card:hover,
.stat-card:active {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.15);
  background: rgba(11, 28, 62, 0.95);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-header span {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
  font-weight: 500;
  max-width: 65%;
}

.stat-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.2));
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #38bdf8;
  font-size: 16px;
  transition: all 0.3s ease;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  margin-top: 15px;
  color: #ffffff;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px 40px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.slide-tag {
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--warning);
  color: #000;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.slide h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.slide p {
  font-size: 0.85rem;
  color: #e2e8f0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  font-weight: 500;
}

.menu-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid var(--warning);
  padding-left: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 30;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 50;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 15px;
  background: rgba(18, 27, 51, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 50;
  cursor: pointer;
  pointer-events: auto;
}

.menu-card:hover,
.menu-card:active {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
  background: rgba(11, 28, 62, 0.95);
  z-index: 60;
}

.menu-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
  color: #38bdf8;
  font-size: 22px;
  transition: all 0.3s ease;
}

.menu-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: 0.3px;
}

.menu-card p {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.3;
}

.section-header-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.section-header-title .highlight {
  color: #38bdf8;
}

.cat-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px 0;
}

.cat-badge {
  background: rgba(11, 28, 62, 0.8);
  border: 1px solid #38bdf8;
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #38bdf8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.katalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  z-index: 30;
}

.katalog-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 30;
  cursor: pointer;
}

.katalog-card:hover,
.katalog-card:active {
  transform: translateY(-16px) !important;
  border-color: #38bdf8 !important;
  background: rgba(11, 28, 62, 0.9) !important;
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3), inset 0 0 15px rgba(56, 189, 248, 0.2) !important;
  z-index: 40;
}

.katalog-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, box-shadow 0.4s ease;
}

.katalog-card:hover .katalog-icon,
.katalog-card:active .katalog-icon {
  transform: scale(1.25) translateY(-10px) !important;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8) !important;
  box-shadow: 0 12px 25px rgba(56, 189, 248, 0.6) !important;
}

.katalog-icon i {
  color: #ffffff;
  font-size: 28px;
}

.katalog-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.katalog-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.katalog-card:hover .katalog-btn,
.katalog-card:active .katalog-btn {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  color: #ffffff;
}

.katalog-card:nth-child(7n+1) .katalog-icon {
  background: #eab308;
}

.katalog-card:nth-child(7n+2) .katalog-icon {
  background: #ef4444;
}

.katalog-card:nth-child(7n+3) .katalog-icon {
  background: #0ea5e9;
}

.katalog-card:nth-child(7n+4) .katalog-icon {
  background: #a855f7;
}

.katalog-card:nth-child(7n+5) .katalog-icon {
  background: #84cc16;
}

.katalog-card:nth-child(7n+6) .katalog-icon {
  background: #ec4899;
}

.katalog-card:nth-child(7n+7) .katalog-icon {
  background: #f97316;
}

.zip-warning-box {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(239, 68, 68, 0.15));
  border: 1px solid rgba(234, 179, 8, 0.5);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  margin: 10px 0 25px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zip-warning-box i.fa-file-zipper {
  font-size: 36px;
  color: #eab308;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.zip-warning-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.zip-warning-box p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-tutorial-zip {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 30;
}

.btn-tutorial-zip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.5);
  color: #fff;
}

.bottom-nav {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: rgba(11, 28, 62, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 10px;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(56, 189, 248, 0.1);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-item i {
  font-size: 20px;
  transition: 0.3s;
}

.nav-item:hover,
.nav-item.active {
  color: #38bdf8;
}

.nav-item:hover i,
.nav-item.active i {
  transform: translateY(-3px);
}

.social-proof-popup {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 9999;
  background: rgba(11, 28, 62, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #22c55e;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
  max-width: 320px;
  pointer-events: none;
}

.social-proof-popup.show {
  top: 24px;
  opacity: 1;
  pointer-events: auto;
}

.sp-icon {
  background: linear-gradient(135deg, #f59e0b, #facc15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.sp-text {
  flex-grow: 1;
}

.sp-text p {
  margin: 0;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.sp-text p:first-child {
  font-size: 11px;
  color: #94a3b8;
}

.sp-text p:first-child strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
}

.sp-text p:nth-child(2) {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 3px;
  font-weight: normal;
}

.sp-product {
  color: #22c55e;
  font-weight: 800;
  font-size: 12px;
  display: block;
  margin-top: 1px;
  letter-spacing: 0.3px;
}

.sp-time {
  font-size: 10px;
  color: #64748b;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.sp-time i {
  font-size: 11px;
  color: #22c55e;
}

.sp-close {
  background: transparent;
  border: none;
  color: #64748b;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s;
}

.sp-close:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .katalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-value {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .app-container {
    padding: 0 0 100px 0 !important;
    gap: 18px;
    max-width: 100%;
  }

  #topButtonGroup {
    top: 15px !important;
    right: 15px !important;
    gap: 6px !important;
  }

  .btn-admin-top {
    padding: 6px 10px !important;
    font-size: 10px !important;
  }

  .hero-banner-header {
    position: sticky;
    top: 0;
    z-index: 990;
    min-height: 115px;
    padding: 15px 15px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0 0 16px 16px;
    margin-bottom: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }

  .hero-text-wrapper {
    max-width: 70%;
    margin-top: 0;
    z-index: 20;
  }

  .hero-title-text {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .hero-badges {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0;
  }

  .hero-badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .hero-art-container {
    position: absolute;
    right: 15px;
    top: 48px;
    transform: scale(0.48);
    transform-origin: top right;
    bottom: auto;
  }

  .hero-top-right {
    top: 12px;
    right: 15px;
    gap: 8px;
  }

  a.btn-buat {
    padding: 6px 10px !important;
    font-size: 10px !important;
    border-radius: 6px;
  }

  .btn-menu {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
    border-radius: 6px;
  }

  .sidebar-menu {
    width: 250px;
    right: -250px;
    background-color: rgba(6, 18, 38, 0.95) !important;
    background-image: none !important;
  }

  .banner-slider {
    margin: 0 15px !important;
    width: calc(100% - 30px) !important;
    height: 200px;
  }

  .slide {
    padding: 25px 20px;
  }

  .slide h2 {
    font-size: 1.2rem;
  }

  .slide p {
    font-size: 0.75rem;
  }

  .stats-grid {
    margin: 0 15px !important;
    width: calc(100% - 30px) !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 16px;
    border-radius: 16px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .menu-section-title {
    margin: 20px 15px 10px 15px !important;
  }

  .menu-grid {
    margin: 0 15px !important;
    width: calc(100% - 30px) !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-card {
    padding: 16px 10px;
    border-radius: 18px;
  }

  .menu-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 20px;
  }

  .menu-card h3 {
    font-size: 0.8rem;
  }

  .cat-badge {
    font-size: 11px;
    padding: 8px 18px;
  }

  .katalog-grid {
    margin: 0 15px !important;
    width: calc(100% - 30px) !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .katalog-card {
    min-height: 150px;
    padding: 15px 8px;
    border-radius: 16px;
  }

  .katalog-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .katalog-icon i {
    font-size: 20px;
  }

  .katalog-title {
    font-size: 9.5px;
    margin-bottom: 10px;
    letter-spacing: 0px;
  }

  .katalog-btn {
    font-size: 8px;
    padding: 5px 10px;
  }

  .zip-warning-box {
    margin: 10px 15px 20px 15px;
    width: calc(100% - 30px);
    padding: 20px 15px;
  }

  .bottom-nav {
    width: 100%;
    max-width: 100%;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .onboard-box {
    padding: 30px 20px 25px 20px;
  }

  .onboard-title {
    font-size: 18px;
  }

  .social-proof-popup {
    left: 15px;
    right: 15px;
    max-width: none;
  }

  .social-proof-popup.show {
    top: 20px;
    bottom: auto;
  }
}

.search-explore-wrapper {
  position: relative;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.25) 0%, rgba(6, 18, 38, 0.4) 60%), linear-gradient(135deg, rgba(8, 26, 58, 0.8) 0%, rgba(11, 28, 62, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 25px 30px;
  margin: 15px 0 35px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 2px 15px rgba(56, 189, 248, 0.1);
  z-index: 40;
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.search-explore-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(56, 189, 248, 0.35);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.search-input-box {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 20px;
}

.search-input-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 50px;
  padding: 18px 24px 18px 55px;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.4s ease;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
}

.search-input-box input:focus {
  background: rgba(11, 28, 62, 0.95);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.4), inset 0 2px 5px rgba(0, 0, 0, 0.4);
}

.search-input-box input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.search-input-box i.fa-magnifying-glass {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #38bdf8;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.category-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  position: relative;
  z-index: 10;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.category-filters::-webkit-scrollbar {
  height: 4px;
}

.category-filters::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.category-filters::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 4px;
}

.cat-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #000;
  border-color: #38bdf8;
  box-shadow: 0 6px 15px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .search-explore-wrapper {
    padding: 20px 15px;
    margin: 15px 15px 25px 15px;
    width: calc(100% - 30px);
    border-radius: 18px;
  }

  .search-input-box input {
    font-size: 13px;
    padding: 15px 20px 15px 50px;
  }

  .category-filters {
    justify-content: flex-start;
  }

  .cat-filter-btn {
    padding: 6px 14px;
    font-size: 11px;
  }
}

/* =========================================
   STYLE UNTUK FITUR MUSIK SPOTIFY (DIPERBAIKI)
========================================= */
.btn-music-trigger {
  background: linear-gradient(135deg, #1db954, #128c7e);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4);
  transition: all 0.3s ease;
  animation: pulseMusic 2s infinite;
  position: relative;
  z-index: 999;
  pointer-events: auto;
}

.btn-music-trigger i {
  font-size: 16px;
}

.btn-music-trigger:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(29, 185, 84, 0.6);
  color: #000;
}

@keyframes pulseMusic {
  0% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(29, 185, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0); }
}

.music-modal-box {
  background: linear-gradient(180deg, #4f4276 0%, #211c38 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 30px 20px 25px 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.05);
  text-align: center;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-overlay.show .music-modal-box {
  transform: translateY(0);
}

.music-header {
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

.music-header i {
  font-size: 20px;
  color: #1ed760;
}

.music-carousel {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  margin-bottom: 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.music-carousel::-webkit-scrollbar {
  display: none;
}

.music-card {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  opacity: 0.5;
  transform: scale(0.85);
  border: 2px solid transparent;
  pointer-events: auto;
}

.music-card.active {
  opacity: 1;
  transform: scale(1.15);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 10;
}

.music-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.music-card:not(.active):hover img {
  filter: brightness(1.2);
}

.music-subtitle {
  font-size: 11px;
  color: #cbd5e1;
  margin-bottom: 20px;
  font-style: italic;
}

.spotify-player-container {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 6px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
  width: 100%;
}
