:root {
  --primary-color: #1a368d; /* Deep blue from letsfm text */
  --primary-light: #2c52c4;
  --secondary-color: #008be5; /* Cyan from upper right shapes */
  --accent-green: #67cf39; /* Vivid lime green */
  --dark-green: #1f6742; /* Forest green */
  --bg-color: #f7f9fc;
  --text-color: #1a202c;
  --text-light: #4a5568;
  --white: #ffffff;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(27, 59, 155, 0.1), 0 10px 10px -5px rgba(27, 59, 155, 0.04);
  
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background aesthetic elements */
.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.4;
  animation: pulse 10s infinite alternate linear;
}

.bg-shape-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
}

.bg-shape-2 {
  bottom: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes pulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  100% { transform: scale(1.1) translate(5%, 5%); opacity: 0.5; }
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-container span.accent {
  color: var(--secondary-color);
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.logo-img-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: color var(--transition-fast);
}

nav a:hover, nav a.active {
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-green));
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown a::after {
  display: none; /* Hide the underline effect for dropdown items */
}

.dropdown a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);

}

.listen-btn-small {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 139, 229, 0.3);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.listen-btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 139, 229, 0.4);
}

/* Main Layout */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 75vh;
  margin-bottom: 4rem;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(103, 207, 57, 0.15);
  color: var(--dark-green);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(103, 207, 57, 0.3);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(103, 207, 57, 0.4);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(103, 207, 57, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Player Visual (Hero right side) */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.player-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.player-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-green));
}

.album-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.album-art .pulse-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ripple 2s infinite;
}

.live-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--danger-color);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(255, 71, 87, 0.4);
  animation: pulse-badge 2s infinite;
  z-index: 5;
}

.listeners-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.listeners-badge i {
  font-size: 0.7rem;
  opacity: 0.8;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.track-info {
  text-align: center;
  margin-bottom: 2rem;
}

.track-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.dj-name {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1rem;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.control-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.control-btn:hover {
  color: var(--primary-color);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(27, 59, 155, 0.3);
  transition: all var(--transition-fast);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(0, 139, 229, 0.4);
}

.volume-container {
  display: flex;
  align-items: center;
  position: relative;
}

.volume-slider-wrapper {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  height: 120px;
  width: 40px;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  z-index: 20;
}

.volume-container:hover .volume-slider-wrapper,
.volume-slider-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

.volume-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100px; /* Length of the slider */
  height: 4px;
  touch-action: none; /* Prevents scroll on mobile drag but allows native sliding */
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  outline: none;
  /* Rotate to make it vertical, starting from bottom */
  transform: rotate(-90deg);
  transform-origin: center;
  /* Adjusting position due to rotation */
  margin: auto;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Features/Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  border-radius: var(--radius-full);
  margin: 1rem auto 0;
}

/* History Flyover */
.history-flyover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.history-flyover.open {
  transform: translateY(0);
}

.history-flyover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
}

.history-flyover-header h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.close-history-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-history-btn:hover {
  color: var(--primary-color);
}

.history-container {
  overflow-y: auto;
  max-height: 100%;
  flex-grow: 1;
}

/* Custom scrollbar for history container */
.history-container::-webkit-scrollbar {
  width: 6px;
}
.history-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
}
.history-container::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

.history-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background-color var(--transition-fast);
}

.history-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
}

.history-item:last-child {
  border-bottom: none;
}

.history-time {
  font-weight: 600;
  color: var(--secondary-color);
  min-width: 50px;
  font-size: 0.9rem;
}

.history-track {
  flex-grow: 1;
}

.history-track strong {
  color: var(--text-color);
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.history-track span {
  color: var(--text-light);
  font-size: 0.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 59, 155, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 139, 229, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card p {
  color: var(--text-light);
  flex-grow: 1;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--accent-green);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  nav ul {
    display: none; /* Hide on mobile for now, usually would add hamburger menu */
  }
}
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 { 
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Team Page specific styles */
.page-header {
  padding-top: 8rem;
  padding-bottom: 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-light);
}

.team-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}
