/* Base Palette - Nightclub Glassmorphism style */

body {
  background-color: #0b0b0f !important;
  color: #f4f4f6 !important;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

/* Accent Colors */

:root {
  --primary-red: #e11922;
  --neon-blue: #00f2fe;
  --glass-bg: rgba(25, 25, 35, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
}

.text-neon {
  color: var(--neon-blue) !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

/* Glassmorphism Card Panels */

.glass-card {
  background: #1c1c1ec0 !important;
  /*backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;*/
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  /*transform: translateY(-5px);*/
  /*border-color: var(--primary-red) !important;*/
  box-shadow: 0 10px 20px rgba(225, 25, 34, 0.15);
}

/* Custom Buttons */

.btn-brand-primary {
  background-color: var(--primary-red) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.btn-brand-primary:hover {
  background-color: #ff2a35 !important;
  box-shadow: 0 0 15px rgba(225, 25, 34, 0.6);
}

.btn-outline-neon {
  border: 1px solid var(--neon-blue) !important;
  color: var(--neon-blue) !important;
  background: transparent !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
}

.btn-outline-neon:hover {
  background: var(--neon-blue) !important;
  color: #000 !important;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* Custom Audio Player UI Components */

.audio-player-wrapper {
  background: rgba(15, 15, 22, 0.9) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 10px;
  padding: 15px;
}

.play-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-red) !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.play-toggle-btn:hover {
  transform: scale(1.05);
  background-color: #ff2a35 !important;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #27273a !important;
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-blue) !important;
  cursor: pointer;
  box-shadow: 0 0 8px var(--neon-blue);
}

.navbar {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border) !important;
}

.navbar-brand span {
  color: var(--primary-red) !important;
}

.form-control, .form-select {
  /*background-color: rgba(20, 20, 30, 0.8) !important;*/
  /*border: 1px solid var(--glass-border) !important;*/
  /*color: #fff !important;*/
}

/* Infinite Scrolling Layout */

.marquee-viewport {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 32s linear infinite;
}

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  width: 320px;
  margin-right: 24px;
  flex-shrink: 0;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-344px * 5));
  }
}

.wave-bg {
  background: linear-gradient(180deg, #0b0b0f 0%, #14141f 50%, #0b0b0f 100%) !important;
}

.floating-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: #25D366 !important;
}

.float-email {
  background-color: #e11922 !important;
}

