  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  :root {
      --spotify-green: #1DB954;
      --dark-bg: #0a0e1a;
      --sidebar-bg: linear-gradient(180deg, #0f1419 0%, #08090e 100%);
      --card-bg: rgba(30, 34, 45, 0.7);
      --card-hover: rgba(40, 44, 55, 0.9);
      --text-primary: #FFFFFF;
      --text-secondary: #B3B3B3;
      --text-tertiary: #808080;
      --now-playing-bar: rgba(20, 24, 35, 0.95);
      --hover-bg: rgba(255, 255, 255, 0.08);
      --dedication-bg: rgba(30, 34, 45, 0.6);
      --dedication-border: rgba(255, 255, 255, 0.1);
      --radio-red: #ff3366;
      --radio-red-glow: rgba(255, 51, 102, 0.3);
      --accent-blue: #3b82f6;
      --accent-purple: #a855f7;
      --accent-pink: #ec4899;
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
  }
a {
    color: #009688;
    text-decoration: none; 
}
  body {
      background-color: #0a0e1a;
      background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
      background-attachment: fixed;
      color: var(--text-primary);
      display: flex;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
  }
  
  body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
          radial-gradient(circle at 20% 50%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 40% 10%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
  }

  /* === MODERN LOGIN/REGISTER CARDS === */
  .card {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      color: var(--text-primary);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
      margin-top: 60px;
      margin-bottom: 60px;
  }
  
  .card .card-body {
      background: transparent;
      color: var(--text-primary); 
  }
  
  .card h4 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 32px;
      color: var(--text-primary);
      text-align: center;
      letter-spacing: -0.5px;
  }
  
  .form-control, .form-select, textarea.form-control {
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      color: var(--text-primary);
      padding: 14px 18px;
      font-size: 15px;
      transition: all 0.3s ease;
  }
  
  .form-control::placeholder {
      color: var(--text-tertiary);
  }
  
  .form-control:focus, .form-select:focus, textarea.form-control:focus {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-primary);
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
      outline: none;
  }
  
  .form-label {
      font-weight: 600;
      font-size: 14px;
      color: var(--text-primary);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .btn-primary {
      background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
      border: none;
      border-radius: 12px;
      padding: 14px 32px;
      font-weight: 700;
      font-size: 16px;
      color: white;
      width: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .btn-primary:hover {
      background: linear-gradient(135deg, #4f90ff 0%, #ba6bff 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }
  
  .alert {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
      padding: 16px;
      margin-bottom: 24px;
  }
  
  .alert-danger {
      background: rgba(239, 68, 68, 0.15);
      border-color: rgba(239, 68, 68, 0.3);
      color: #fca5a5;
  }
  
  .alert-success {
      background: rgba(34, 197, 94, 0.15);
      border-color: rgba(34, 197, 94, 0.3);
      color: #86efac;
  }
  
  .mb-3 {
      margin-bottom: 24px !important;
  }
  
  .mt-4 {
      margin-top: 24px !important;
  }
  
  .btn-register-link {
      display: inline-block;
      color: var(--accent-blue);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      padding: 8px 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
      background: rgba(59, 130, 246, 0.1);
  }
  
  .btn-register-link:hover {
      color: white;
      background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  /* Improve readability of muted text on dark backgrounds */
  .text-muted {
      color: var(--text-secondary) !important; /* was too dark on dark bg */
  }

  .emojionearea,
  .emojionearea.form-control,
  .emojionearea-editor {
      background-color: #3b3939 !important;
      color: #ffffff !important;
      font-size: 19px !important;
  }
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.visitor-counter:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.counter-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.counter-icon.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.counter-icon.online::before {
  background: #10b981;
}

.counter-icon.total {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.counter-icon.total::before {
  background: #3b82f6;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

.counter-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.counter-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.counter-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}
  /* Mobile menu toggle */
  .menu-toggle {
      display: none;
      top: 16px;
      left: 16px;
      z-index: 1;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: white;
      font-size: 18px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .menu-toggle:active {
      transform: translateY(0);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  /* Sidebar - Modern Design */
  .sidebar {
      width: 280px;
      background: var(--sidebar-bg);
      backdrop-filter: blur(20px);
      padding: 28px 20px;
      height: 100vh;
      position: fixed;
      overflow-y: auto;
      z-index: 105;
      transition: transform 0.3s ease;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
  }

  /* Modern scrollbar for sidebar */
  .sidebar::-webkit-scrollbar {
      width: 6px;
  }

  .sidebar::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
  }

  .sidebar::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      border-radius: 3px;
      transition: background 0.2s;
  }

  .sidebar::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #ff4d4d 0%, #ff5588 100%);
  }

  .sidebar {
      scrollbar-width: thin;
      scrollbar-color: var(--radio-red) rgba(255, 255, 255, 0.05);
  }

  .logo {
      color: var(--radio-red);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: var(--glass-bg);
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .logo i {
      margin-right: 12px;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 8px var(--radio-red-glow));
  }

  .nav-item {
      display: flex;
      align-items: center;
      padding: 14px 16px;
      color: var(--text-secondary);
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      border-radius: 10px;
      margin-bottom: 4px;
      position: relative;
      overflow: hidden;
  }
  
  .nav-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(180deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      transform: scaleY(0);
      transition: transform 0.3s ease;
  }

  .nav-item:hover {
      color: var(--text-primary);
      background: var(--hover-bg);
      transform: translateX(4px);
  }
  
  .nav-item:hover::before,
  .nav-item.active::before {
      transform: scaleY(1);
  }
  
  .nav-item.active {
      color: var(--text-primary);
      background: var(--hover-bg);
      box-shadow: 0 0 20px rgba(255, 51, 102, 0.15);
  }

  .nav-item i {
      margin-right: 16px;
      font-size: 20px;
      min-width: 24px;
      transition: transform 0.3s ease;
  }
  
  .nav-item:hover i {
      transform: scale(1.1);
  }

  .library {
      margin-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
  }

  .library-title {
      color: var(--text-tertiary);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      margin-bottom: 16px;
      font-weight: 700;
      padding: 0 16px;
  }

  /* Main Content */
  .main-content {
      flex: 1;
      margin-left: 280px;
      padding: 32px;
      overflow-y: auto;
      overflow-x: hidden;
      height: 100vh;
      position: relative;
      z-index: 1;
  }

  /* === MODERN PROFESSIONAL HEADER === */
  .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      padding: 16px 24px;
      background: linear-gradient(135deg, 
          rgba(15, 20, 35, 0.95) 0%,
          rgba(20, 25, 40, 0.92) 50%,
          rgba(15, 20, 35, 0.95) 100%);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      box-shadow: 
          0 0 40px rgba(255, 51, 102, 0.15),
          0 8px 32px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(255, 255, 255, 0.1),
          inset 0 -1px 0 rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: visible;
      z-index: 1000;
      isolation: isolate;
  }

  .header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, 
          transparent 0%, 
          rgba(255, 255, 255, 0.1) 50%, 
          transparent 100%);
      opacity: 0.3;
  }

  .header::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: 
          repeating-linear-gradient(0deg,
              rgba(255, 255, 255, 0.03) 0px,
              transparent 1px,
              transparent 2px,
              rgba(255, 255, 255, 0.03) 3px),
          linear-gradient(135deg,
              transparent 0%,
              rgba(255, 255, 255, 0.02) 50%,
              transparent 100%);
      pointer-events: none;
      opacity: 0.5;
  }

  @keyframes headerScanline {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
  }

  /* === RETRO HIGH-TECH LOGO === */
  .header-logo {
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
      z-index: 2;
  }

  .logo-square {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: 
          linear-gradient(135deg, 
              rgba(0, 0, 0, 0.6) 0%, 
              rgba(20, 20, 30, 0.8) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 
          0 0 30px var(--radio-red-glow),
          0 8px 24px rgba(0, 0, 0, 0.6),
          inset 0 2px 4px rgba(255, 255, 255, 0.1),
          inset 0 -2px 4px rgba(0, 0, 0, 0.4);
      position: relative;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 2px solid rgba(255, 255, 255, 0.1);
  }

  .logo-square::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 12px;
      padding: 2px;
      background: linear-gradient(135deg, 
          var(--radio-red) 0%, 
          var(--accent-blue) 50%,
          var(--accent-purple) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0.8;
      animation: logoGlow 3s ease-in-out infinite;
  }

  .logo-square::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 8px;
      background: radial-gradient(circle at 30% 30%, 
          rgba(255, 255, 255, 0.2) 0%,
          transparent 60%);
      pointer-events: none;
  }

  @keyframes logoGlow {
      0%, 100% { opacity: 0.6; filter: brightness(1); }
      50% { opacity: 1; filter: brightness(1.3); }
  }
  
  .logo-square:hover {
      transform: scale(1.1) translateY(-2px);
      box-shadow: 
          0 0 50px var(--radio-red-glow),
          0 12px 32px rgba(0, 0, 0, 0.8);
  }

  .logo-square i {
      font-size: 30px;
      color: var(--radio-red);
      filter: drop-shadow(0 0 8px var(--radio-red-glow))
              drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
      animation: iconPulse 2s ease-in-out infinite;
  }

  @keyframes iconPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
  }

  .logo-text {
      font-size: 28px;
      font-weight: 900;
      background: linear-gradient(135deg, 
          #ffffff 0%, 
          var(--radio-red) 50%,
          var(--accent-blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 2px;
      position: relative;
      text-transform: uppercase;
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
      font-family: 'Arial Black', sans-serif;
  }

  .logo-text::after {
      content: attr(data-text);
      position: absolute;
      left: 2px;
      top: 2px;
      z-index: -1;
      background: linear-gradient(135deg, 
          var(--radio-red) 0%, 
          var(--accent-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.3;
      filter: blur(4px);
  }

  /* User Dropdown */
  /* Language Switcher */
  .language-switcher {
      display: none !important;
  }

  .language-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-primary);
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
  }

  .language-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transform: translateY(-1px);
      color: var(--text-primary);
  }

  .language-toggle i {
      font-size: 18px;
  }

  .language-toggle span {
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
  }

  .language-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      background: rgba(20, 24, 35, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      overflow: hidden;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
  }

  .language-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .language-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 16px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 15px;
      transition: background 0.2s, color 0.2s;
      cursor: pointer;
  }

  .language-item:hover {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-primary);
  }

  .language-item.active {
      background: rgba(29, 185, 84, 0.1);
      color: var(--spotify-green);
  }

  .language-flag {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .language-flag i {
      width: 20px;
      text-align: center;
      font-size: 18px;
  }

  .language-flag img {
      width: 24px;
      height: 24px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .language-toggle img {
      width: 24px;
      height: 24px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .language-item .fa-check {
      color: var(--spotify-green);
      font-size: 14px;
  }

  /* User Dropdown */
  .user-dropdown-container {
      position: relative;
      z-index: 1000;
  }

  .user-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      cursor: pointer;
      padding: 10px 18px;
      border-radius: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .user-dropdown-toggle:hover {
      background: var(--hover-bg);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
      transform: translateY(-2px);
  }

  .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      box-shadow: 0 4px 12px var(--radio-red-glow);
      border: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .user-avatar img {
      border-radius: 50%;
  }

  .user-name {
      font-weight: 700;
      font-size: 16px;
      letter-spacing: -0.3px;
  }

  /* === MODERN DROPDOWN MENU === */
  .user-dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: 280px;
      background: rgba(20, 24, 35, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
      overflow: hidden;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(0.95);
      transition: all 0.3s ease;
  }

  .user-dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
  }

  .dropdown-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .user-avatar-large {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 26px;
      box-shadow: 0 8px 24px var(--radio-red-glow);
      border: 3px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-username {
      font-weight: 800;
      font-size: 17px;
      color: var(--text-primary);
      letter-spacing: -0.3px;
  }

  .dropdown-email {
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 2px;
  }

  .dropdown-divider {
      height: 1px;
      background: var(--glass-border);
      margin: 8px 0;
  }

  .dropdown-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 20px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.2s;
  }

  .dropdown-item i {
      width: 22px;
      text-align: center;
      font-size: 17px;
  }

  .dropdown-item:hover {
      background: var(--hover-bg);
      color: var(--text-primary);
      padding-left: 24px;
  }

  .logout-item {
      color: #ff5555;
  }

  .logout-item:hover {
      background: rgba(255, 85, 85, 0.15);
      color: #ff5555;
  }

  .user-actions {
      display: flex;
      align-items: center;
  }

  .upgrade-btn {
      background-color: var(--text-primary);
      color: var(--dark-bg);
      border: none;
      border-radius: 20px;
      padding: 8px 16px;
      font-weight: bold;
      margin-right: 16px;
      cursor: pointer;
      transition: background-color 0.2s;
  }

  .upgrade-btn:hover {
      background-color: #e0e0e0;
  }

  .user-profile {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: #535353;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  /* === MODERN PROFESSIONAL STATION HEADER === */
  .station-header {
      display: flex;
      gap: 40px;
      margin-bottom: 48px;
      align-items: flex-start;
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      padding: 32px;
      border-radius: 24px;
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
  }
  
  .station-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(135deg, var(--radio-red-glow) 0%, transparent 70%);
      opacity: 0.3;
      pointer-events: none;
  }

  /* Station Avatar Container */
  .station-avatar {
      position: relative;
      width: 280px;
      height: 280px;
      flex-shrink: 0;
      z-index: 1;
  }

  /* Station Logo (background circle) */
  .station-logo {
      width: 100%;
      height: 100%;
      border-radius: 20px;
      background: linear-gradient(145deg, var(--radio-red), var(--accent-pink));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 
          0 20px 60px rgba(0, 0, 0, 0.5),
          0 0 40px var(--radio-red-glow);
      position: relative;
      z-index: 1;
      object-fit: cover;
      transition: all 0.3s ease;
  }
  
  .station-logo:hover {
      transform: scale(1.02);
      box-shadow: 
          0 24px 70px rgba(0, 0, 0, 0.6),
          0 0 50px var(--radio-red-glow);
  }

  .station-logo i {
      font-size: 80px;
      color: rgba(255, 255, 255, 0.2);
  }

  /* Centered Play Button */
  .station-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
      color: var(--dark-bg);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
      z-index: 2;
      transition: all 0.3s ease;
  }

  .station-play-btn:hover {
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  }
  
  .station-play-btn i {
      padding-left: 3px;
  }

  .station-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 20px;
      z-index: 2;
      animation: pulseBadge 2s infinite;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
  }

  @keyframes pulseBadge {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
      }

      70% {
          box-shadow: 0 0 0 12px rgba(255, 51, 102, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
      }
  }

    /* --- Dedications feed (global styles outside media queries) --- */
    .dedications-scroll {
        max-height: 380px;
        overflow-y: auto;
        border: 1px solid #26304a;
        border-radius: 12px;
        padding: 8px 10px;
        background: #0f1426;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        scrollbar-width: thin;
        scrollbar-color: #475569 rgba(17, 24, 39, 0.6);
    }
    .dedications-scroll::-webkit-scrollbar { width: 10px; }
    .dedications-scroll::-webkit-scrollbar-track { background: rgba(17, 24, 39, 0.6); border-radius: 10px; }
    .dedications-scroll::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #374151, #1f2937); border-radius: 10px; border: 2px solid rgba(15, 20, 38, 0.9); }
    .dedications-scroll::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #475569, #111827); }

    .dedication-item {
        display: flex;
        gap: 14px;
        padding: 14px 12px;
        margin-bottom: 12px;
        background: linear-gradient(180deg, rgba(20, 26, 46, 0.85), rgba(12, 18, 34, 0.9));
        border: 1px solid #1d2742;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.35);
        transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    }
    .dedication-item:last-child { margin-bottom: 0; }
    .dedication-item:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.45); border-color: #2a3a62; }
    .dedication-avatar-wrap { flex: 0 0 auto; }
    .dedication-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #1f2937; box-shadow: 0 2px 8px rgba(0,0,0,0.35); }
    .dedication-content { flex: 1 1 auto; min-width: 0; }
    .dedication-header { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
    .dedication-author { font-weight: 600; color: #e5e7eb; }
    .dedication-time { color: #9ca3af; font-size: 0.85rem; }
    .dedication-message { margin-top: 6px; color: #cbd5e1; line-height: 1.6; word-wrap: break-word; white-space: pre-wrap; }
    .dedication-message a { color: #93c5fd; text-decoration: underline dotted; }
    .dedication-message a:hover { color: #bfdbfe; text-decoration: underline; }
    .dedication-badge { display: inline-block; font-size: 0.70rem; padding: 2px 6px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }
    .badge-user { background: rgba(34, 197, 94, 0.18); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.35); }
    .badge-guest { background: rgba(59, 130, 246, 0.18); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.35); }
    .badge-banned { background: rgba(239, 68, 68, 0.18); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.35); }
    .badge-muted { background: rgba(234, 179, 8, 0.18); color: #fde68a; border: 1px solid rgba(234, 179, 8, 0.35); }
    .dedications-feed { border: 1px solid #26304a; border-radius: 12px; padding: 8px 10px; background: #0f1426; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    .pagination .page-link { background-color: #0f1426; border-color: #26304a; color: #cbd5e1; }
    .pagination .page-link:hover { background-color: #111a30; border-color: #2f3b5c; color: #e5e7eb; }
    .pagination .page-item.active .page-link { background-color: #1e2a48; border-color: #334066; color: #fff; }
    .pagination .page-item.disabled .page-link { background-color: #0d1428; border-color: #202a46; color: #64748b; }
    @media (max-width: 480px) { .dedication-avatar { width: 44px; height: 44px; } .dedication-item { padding: 12px 10px; gap: 12px; } .dedication-time { font-size: 0.8rem; } }



  .station-meta {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 1;
  }

  .station-tags {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
  }

  .tag {
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      color: var(--text-secondary);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid var(--glass-border);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
  }
  
  .tag:hover {
      background: var(--hover-bg);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }

  .vip-tag {
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      color: white;
      border: none;
      box-shadow: 0 4px 12px var(--radio-red-glow);
  }
  
  .vip-tag:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px var(--radio-red-glow);
  }

  .station-name {
      font-size: 45px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
      color: var(--text-primary);
      letter-spacing: -1px;
  }

  .station-description {
      color: var(--text-secondary);
      font-size: 18px;
      line-height: 1.6;
      max-width: 700px;
      margin-bottom: 24px;
      font-weight: 400;
  }

  .station-stats {
      display: inline-flex;
      gap: 20px;
      align-items: center;
      margin-bottom: 16px;
  }

  .listener-count,
  .dj-on-air {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      font-size: 14px;
  }

  .listener-count i,
  .dj-on-air i {
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 16px;
  }

  .listener-count strong,
  .dj-on-air strong {
      color: var(--text-primary);
      font-weight: 600;
  }

  /* Rating in counter */
  .rating-item {
      flex-direction: column;
      align-items: center;
      gap: 6px;
  }

  .rating-stars-compact {
      display: flex;
      gap: 2px;
      margin-bottom: 2px;
  }

  .star-compact {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
      line-height: 1;
  }

  .star-compact:hover,
  .star-compact.hovered {
      color: #fbbf24;
      transform: scale(1.1);
  }

  .star-compact.selected {
      color: #fbbf24;
      text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
  }

  .rating-item .counter-text {
      align-items: center;
  }

  .rating-item .counter-number {
      font-size: 18px;
  }

  /* Tracks Section */
  .section-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 28px;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: -0.5px;
  }

  .tracks-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 48px;
      max-height: 500px;
      overflow-y: auto;
      padding-right: 8px;
  }
  /* Remove underline on sidebar link items */
  .sidebar a.nav-item {
      text-decoration: none;
  }
  .sidebar a.nav-item:hover,
  .sidebar a.nav-item:focus {
      text-decoration: none;
  }

  .tracks-container::-webkit-scrollbar {
      width: 8px;
  }

  .tracks-container::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
  }

  .tracks-container::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      border-radius: 4px;
  }
  
  .tracks-container::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #ff4d4d 0%, #ff5588 100%);
  }

  .track {
      display: grid;
      grid-template-columns: 1fr 1fr 80px;
      align-items: center;
      padding: 16px 20px;
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      margin-bottom: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .track::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .track:hover {
      background: var(--card-hover);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateX(8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .track:hover::before {
      opacity: 1;
  }
  
  .track.active,
  .track.playing {
      background: var(--card-hover);
      border-color: var(--radio-red);
      box-shadow: 0 8px 24px var(--radio-red-glow);
  }
  
  .track.active::before,
  .track.playing::before {
      opacity: 1;
  }

  .track-number {
      display: none;
  }

  .track-info {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .track-image-container {
      position: relative;
      display: inline-block;
      width: 60px;
      min-width: 60px;
      height: 60px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .track-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .track:hover .track-image {
      transform: scale(1.05);
  }

  .track-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      color: var(--radio-red);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      opacity: 1;
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .track-info:hover .track-play-btn,
  .track.playing .track-play-btn {
      opacity: 1;
      pointer-events: auto;
  }

  .track-play-btn:hover {
      background: var(--radio-red);
      color: white;
      transform: translate(-50%, -50%) scale(1.1);
  }

  .track-details {
      flex: 1;
      min-width: 0;
  }

  .track-details h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--text-primary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .track-details p {
      color: var(--text-secondary);
      font-size: 13px;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .track-title {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .track-duration {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 500;
  }

  .track-time {
      font-family: 'Courier New', monospace;
      color: var(--text-secondary);
      min-width: 45px;
      text-align: right;
  }

  .track.playing .track-time {
      color: var(--radio-red);
      font-weight: 600;
  }

  .play-btn {
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 18px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s;
  }

  .play-btn:hover {
      color: var(--radio-red);
      background: rgba(255, 51, 51, 0.1);
  }

  .play-btn.playing {
      color: var(--radio-red);
  }

  /* Playing track state */
  .track.playing {
      background: linear-gradient(135deg, rgba(255, 51, 51, 0.08) 0%, rgba(255, 51, 51, 0.03) 100%);
      border-color: rgba(255, 51, 51, 0.3);
  }

  .track.playing::before {
      opacity: 1;
  }

  .track.playing .track-details h4 {
      color: var(--radio-red);
  }

  .track.playing .track-title {
      color: var(--radio-red);
  }

  /* === MODERN DEDICATION SECTION === */
  .dedication-section {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 32px;
      margin-bottom: 48px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
  }
  
  .dedication-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--radio-red-glow) 0%, transparent 70%);
      opacity: 0.08;
      pointer-events: none;
  }

  .dedication-header {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
  }

  .dedication-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 16px;
      box-shadow: 0 4px 16px var(--radio-red-glow);
  }

  .dedication-icon i {
      color: white;
      font-size: 20px;
  }

  .dedication-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.5px;
  }

  .dedication-form {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
  }

  .dedication-header-info {
      display: flex;
      margin-bottom: 12px;
  }

  .dedication-avatar {
      width: 40px;
      /* dimensiune avatar */
      height: 40px;
      border-radius: 50%;
      /* face poza rotundă */
      object-fit: cover;
      /* păstrează proporțiile */
      margin-right: 10px;
      /* spațiu între avatar și text */
  }

  .dedication-user-time {
      display: flex;
      flex-direction: column;
      /* username deasupra, time dedesubt */
  }

  .form-group {
      margin-bottom: 24px;
  }

  .form-label {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .form-input {
      width: 100%;
      padding: 14px 18px;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 16px;
      transition: all 0.3s ease;
  }

  .form-input:focus {
      outline: none;
      border-color: var(--radio-red);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 4px var(--radio-red-glow);
  }

  .textarea-container {
      position: relative;
  }

  /* Limit hidden message textarea to dedication widget only */
  .dedication-section #message {
      display: none;
  }

  .emojionearea {
      width: 100%;
      min-height: 120px;
      background-color: #282828;
      border: 1px solid #333;
      border-radius: 4px;
      color: var(--text-primary);
      font-size: 16px;
  }

  .emojionearea-editor {
      min-height: 100px;
      padding: 12px 16px;
      outline: none;
  }

  .char-counter {
      position: absolute;
      bottom: 8px;
      right: 12px;
      font-size: 12px;
      color: var(--text-tertiary);
      z-index: 10;
  }

  .char-counter.warning {
      color: #ff5555;
  }

  .submit-btn {
      align-self: flex-start;
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 14px 32px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px var(--radio-red-glow);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .submit-btn:hover {
      background: linear-gradient(135deg, #ff4d4d 0%, #ff5588 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px var(--radio-red-glow);
  }

  .submit-btn:disabled {
      background: rgba(255, 255, 255, 0.1);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
  }

  /* Recent Dedications */
  .recent-dedications {
      margin-top: 32px;
      max-height: 400px;
      overflow-y: auto;
      padding-right: 8px;
  }

  .recent-dedications::-webkit-scrollbar {
      width: 6px;
  }

  .recent-dedications::-webkit-scrollbar-track {
      background: #282828;
      border-radius: 3px;
  }

  .recent-dedications::-webkit-scrollbar-thumb {
      background: var(--radio-red);
      border-radius: 3px;
  }

    /* DJ Zone */
    .dj-zone {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.35);
            border: 1px solid #26304a;
            background: #0f1426;
    }
    .dj-zone-banner {
            position: relative;
            background-size: cover;
            background-position: center;
            min-height: 160px;
    }
    .dj-zone-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 70%);
        }
    .dj-zone-content {
            position: absolute;
            left: 16px;
            bottom: 12px;
        }
    .dj-zone-avatar {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(255,255,255,0.25);
            object-fit: cover;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
    .dj-zone-meta { color: #fff; }
    .dj-zone-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            opacity: 0.85;
        }
    .dj-zone-name {
            font-size: 18px;
            font-weight: 700;
            margin-top: 2px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.5);
        }

  .dedication-card {
      background-color: #282828;
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 16px;
      animation: fadeIn 0.3s ease-out;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }



  .dedication-username {
      font-weight: bold;
      color: var(--text-primary);
  }

  .dedication-time {
      color: var(--text-tertiary);
      font-size: 12px;
  }

  .dedication-message {
      line-height: 1.5;
      color: var(--text-secondary);
      word-break: break-word;
  }

  /* === MODERN NOW PLAYING BAR === */
  .now-playing-bar {
      background: var(--now-playing-bar);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      padding: 16px 24px;
      margin-top: auto;
      border-radius: 0;
      position: sticky;
      bottom: 0;
      z-index: 100;
      width: 100%;
      box-sizing: border-box;
      box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  }

  .now-playing-left {
      display: flex;
      align-items: center;
      width: 30%;
      min-width: 200px;
  }

  .now-playing-center {
      width: 40%;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 300px;
  }

  .now-playing-right {
      width: 30%;
      display: flex;
      justify-content: flex-end;
      min-width: 200px;
  }

  .now-playing-track {
      display: flex;
      align-items: center;
      width: 100%;
  }

  .now-playing-image {
      width: 64px;
      height: 64px;
      border-radius: 10px;
      margin-right: 16px;
      background-size: cover;
      background-position: center;
      background: linear-gradient(145deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
  }
  
  .now-playing-image:hover {
      transform: scale(1.05);
  }

  .now-playing-info h5 {
      font-size: 15px;
      margin-bottom: 4px;
      font-weight: 600;
      color: var(--text-primary);
  }

  .now-playing-info p {
      color: var(--text-secondary);
      font-size: 13px;
  }

  .player-controls {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 32px;
  }

  .player-controls button {
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      color: var(--text-secondary);
      font-size: 16px;
      cursor: pointer;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .player-controls button:hover {
      background: var(--hover-bg);
      color: var(--text-primary);
      transform: scale(1.1);
  }

  .play-pause-btn {
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      color: white;
      width: 42px;
      height: 42px;
      border: none;
      box-shadow: 0 4px 16px var(--radio-red-glow);
  }
  
  .play-pause-btn:hover {
      background: linear-gradient(135deg, #ff4d4d 0%, #ff5588 100%);
      transform: scale(1.15);
      box-shadow: 0 6px 20px var(--radio-red-glow);
  }

  .progress-container {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
  }

  .progress-bar {
      width: 100%;
      max-width: 400px;
      height: 4px;
      background-color: #535353;
      border-radius: 2px;
      margin: 8px 0;
      position: relative;
      cursor: pointer;
  }

  .progress {
      height: 100%;
      width: 0%;
      background-color: var(--text-primary);
      border-radius: 2px;
      transition: width 0.1s linear;
  }

  .buffering {
      height: 100%;
      width: 0%;
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
  }

  .time-info {
      width: 100%;
      max-width: 400px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-tertiary);
  }

  .volume-controls {
      display: flex;
      align-items: center;
      width: 150px;
  }

  .volume-controls i {
      margin-right: 12px;
      color: var(--text-secondary);
  }

  .volume-bar {
      width: 100%;
      height: 4px;
      background-color: #535353;
      border-radius: 2px;
      position: relative;
      cursor: pointer;
  }

  .volume-level {
      height: 100%;
      width: 80%;
      background-color: var(--text-primary);
      border-radius: 2px;
  }

  /* Overlay for mobile menu */
  .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 99;
  }

  /* === PRO VIP FOOTER - RETRO DIGITAL STYLE === */
  .radio-footer {
      background: linear-gradient(145deg, #0a0a0a, #141414);
      border-top: 1px solid #282828;
      padding: 40px 32px 24px;
      margin-top: 40px;
      position: relative;
      overflow: hidden;
  }

  .radio-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
          linear-gradient(rgba(255, 51, 51, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 51, 51, 0.03) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
      z-index: 0;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      position: relative;
      z-index: 1;
  }

  /* Brand Section */
  .footer-brand {
      display: flex;
      flex-direction: column;
  }

  .footer-logo {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--radio-red), #cc0000);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 0 12px rgba(255, 51, 51, 0.4);
  }

  .footer-logo i {
      font-size: 28px;
      color: white;
  }

  .radio-name {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(to right, #fff, #b3b3b3);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: block;
  }

  .vip-badge {
      display: inline-block;
      background: linear-gradient(90deg, #ff3333, #ff6633);
      color: white;
      font-size: 12px;
      font-weight: bold;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 6px;
      letter-spacing: 0.5px;
  }

  .footer-tagline {
      color: var(--text-secondary);
      font-size: 14px;
      margin-top: 12px;
      line-height: 1.5;
  }

  /* Links */
  .footer-links h4 {
      font-size: 16px;
      margin-bottom: 16px;
      color: var(--text-primary);
      position: relative;
  }

  .footer-links h4::after {
      content: "";
      display: block;
      width: 30px;
      height: 2px;
      background: var(--radio-red);
      margin-top: 6px;
  }

  .footer-links ul {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
  }

  .footer-links a:hover {
      color: var(--text-primary);
      text-decoration: underline;
  }

  /* VIP CTA */
  .footer-vip-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 16px;
      border: 1px solid rgba(255, 51, 51, 0.2);
      border-radius: 12px;
      background: rgba(255, 51, 51, 0.03);
  }

  .vip-glow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--radio-red), #cc0000);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 0 0 16px rgba(255, 51, 51, 0.5);
  }

  .vip-glow i {
      color: white;
      font-size: 20px;
  }

  .footer-vip-cta h4 {
      margin-bottom: 8px;
      color: white;
  }

  .footer-vip-cta p {
      color: var(--text-secondary);
      font-size: 13px;
      margin-bottom: 12px;
  }

  .vip-btn {
      background: linear-gradient(90deg, var(--radio-red), #ff6633);
      color: white;
      border: none;
      border-radius: 20px;
      padding: 8px 20px;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
      transition: opacity 0.2s;
  }

  .vip-btn:hover {
      opacity: 0.9;
  }

  /* Bottom Bar */
  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid #282828;
      color: var(--text-tertiary);
      font-size: 13px;
      position: relative;
      z-index: 1;
  }

  .glow {
      color: var(--radio-red);
      font-weight: bold;
      text-shadow: 0 0 8px rgba(255, 51, 51, 0.6);
  }

  .footer-tech-tags {
      display: flex;
      gap: 16px;
  }

  .footer-tech-tags span {
      background: rgba(255, 255, 255, 0.05);
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 12px;
  }

  /* === MODERN DJ HEADER SECTION === */
  .dj-header {
      display: grid;
      grid-template-columns: 160px 1fr auto;
      gap: 28px;
      align-items: center;
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 24px;
      height: auto;
      min-height: 140px;
      margin-bottom: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
  }
  
  .dj-header::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      background: linear-gradient(90deg, transparent 0%, var(--radio-red-glow) 100%);
      opacity: 0.1;
      pointer-events: none;
  }

  .dj-header-left {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--radio-red-glow) 0%, rgba(168, 85, 247, 0.15) 100%);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 12px;
      width: 140px;
      height: 140px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
  }

  .dj-header-avatar {
      width: 116px;
      height: 116px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
  }
  
  .dj-header-avatar:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  }

  .dj-header-center {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 4px 0;
      z-index: 1;
  }

  .dj-header-name {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.5px;
  }

  .dj-header-name i {
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 20px;
  }

  .dj-header-description {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.5;
      max-width: 650px;
      font-weight: 400;
  }

  .dj-header-social {
      display: flex;
      gap: 12px;
      margin-top: 8px;
  }

  .social-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
  }

  .social-btn:hover {
      background: linear-gradient(135deg, var(--radio-red) 0%, var(--accent-pink) 100%);
      border-color: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 16px var(--radio-red-glow);
  }

  .dj-header-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0;
      z-index: 1;
  }

  .vote-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 10px 18px;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
      min-width: 90px;
  }

  .vote-btn:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateX(2px);
  }

  .vote-btn i {
      font-size: 16px;
  }

  .vote-btn.vote-up:hover {
      background: rgba(16, 185, 129, 0.1);
      border-color: #10b981;
      color: #10b981;
  }

  .vote-btn.vote-down:hover {
      background: rgba(239, 68, 68, 0.1);
      border-color: #ef4444;
      color: #ef4444;
  }

  .vote-btn.vote-up.voted {
      background: rgba(16, 185, 129, 0.15);
      border-color: #10b981;
      color: #10b981;
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  }

  .vote-btn.vote-down.voted {
      background: rgba(239, 68, 68, 0.15);
      border-color: #ef4444;
      color: #ef4444;
      box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
  }

  .vote-count {
      font-weight: 700;
      font-size: 14px;
  }

  /* VIP Zone Section */
  .vip-zone {
      background: linear-gradient(145deg, #1a1a1a, #222);
      border: 1px solid #333;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
  }

  .vip-zone::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #ff3333, #ffcc00);
  }

  .vip-title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #ffcc00;
      display: flex;
      align-items: center;
  }

  .vip-title i {
      margin-right: 10px;
      color: #ffcc00;
  }

  .vip-description {
      color: var(--text-secondary);
      margin-bottom: 20px;
      line-height: 1.6;
  }

  .vip-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
  }

  .vip-benefit {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 12px;
      background: rgba(255, 204, 0, 0.05);
      border-radius: 8px;
      transition: transform 0.2s;
  }

  .vip-benefit:hover {
      transform: translateY(-4px);
      background: rgba(255, 204, 0, 0.1);
  }

  .vip-benefit i {
      font-size: 20px;
      color: #ffcc00;
      margin-bottom: 8px;
  }

  .vip-benefit span {
      font-size: 14px;
      color: var(--text-primary);
  }

  .vip-upgrade-btn {
      display: block;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
      padding: 12px;
      background: linear-gradient(90deg, #ff3333, #ff6633);
      color: white;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      transition: opacity 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .vip-upgrade-btn i {
      margin-right: 8px;
  }

  .vip-upgrade-btn:hover {
      opacity: 0.9;
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
      .station-header {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .station-meta {
          align-items: center;
      }

      .station-stats {
          justify-content: center;
          gap: 16px;
      }

      .listener-count,
      .dj-on-air {
          font-size: 12px;
      }

      .station-name {
          font-size: 42px;
      }

      /* DJ Header responsive */
      .dj-header {
          grid-template-columns: 110px 1fr auto;
          padding: 16px;
          min-height: 100px;
      }

      .dj-header-left {
          width: 100px;
          height: 100px;
          padding: 8px;
      }

      .dj-header-avatar {
          width: 84px;
          height: 84px;
      }

      .dj-header-name {
          font-size: 19px;
      }

      .dj-header-description {
          font-size: 13px;
      }

      .social-btn {
          width: 30px;
          height: 30px;
          font-size: 13px;
      }

      .vote-btn {
          padding: 8px 14px;
          min-width: 85px;
      }
  }

  @media (max-width: 768px) {
      .menu-toggle {
          display: flex;
      }

      .sidebar {
          transform: translateX(-100%);
          width: 250px;
      }

      .sidebar.active {
          transform: translateX(0);
      }

      .main-content {
          margin-left: 0;
          padding: 24px 16px;
          /* removed bottom padding */
          height: auto;
          min-height: 100vh;
      }

      .user-name {
          display: none;
      }

      .logo-text {
          font-size: 24px;
      }

      /* footer */
      .radio-footer {
          padding: 32px 16px 20px;
      }

      .footer-grid {
          grid-template-columns: 1fr;
          gap: 28px;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 12px;
          text-align: center;
      }

      .footer-tech-tags {
          flex-wrap: wrap;
          justify-content: center;
      }

      /* station header */
      .station-avatar {
          width: 250px;
          height: 250px;
      }

      .station-play-btn {
          width: 60px;
          height: 60px;
          font-size: 18px;
      }

      .station-name {
          font-size: 34px;
      }

      .station-description {
          font-size: 15px;
      }

      /* Now Playing Bar Mobile */
      .now-playing-bar {
          flex-direction: column;
      }

      .now-playing-track {
          display: none;
      }

      .now-playing-left,
      .now-playing-center,
      .now-playing-right {
          width: 100%;
          min-width: auto;
          justify-content: center;
      }

      .now-playing-left {
          order: 2;
      }

      .now-playing-center {
          order: 1;
          margin-bottom: 0px;
      }

      .now-playing-right {
          order: 3;
          display: none;
      }

      .player-controls {
          margin: 0;
      }

      .progress-container {
          width: 100%;
      }

      .progress-bar {
          max-width: 100%;
          display: none;
      }

      .time-info {
          max-width: 100%;
          display: none;
      }

      .volume-controls {
          display: none;
      }

      .tracks-container {
          max-height: 300px;
      }

      .track {
          grid-template-columns: 40px 1fr 70px;
      }

      .track-album {
          display: none;
      }

      .dedication-section {
          padding: 16px;
      }

    /* --- Dedications list (modern scrollbar + layout) --- */
    .dedications-scroll {
        max-height: 380px;
        overflow-y: auto;
        border: 1px solid #26304a;
        border-radius: 12px;
        padding: 8px 10px;
        background: #0f1426;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

    /* WebKit scrollbar */
    .dedications-scroll::-webkit-scrollbar {
        width: 10px;
    }
    .dedications-scroll::-webkit-scrollbar-track {
        background: rgba(17, 24, 39, 0.6);
        border-radius: 10px;
    }
    .dedications-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #374151, #1f2937);
        border-radius: 10px;
        border: 2px solid rgba(15, 20, 38, 0.9);
    }
    .dedications-scroll::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #475569, #111827);
    }

    /* Firefox */
    .dedications-scroll {
        scrollbar-width: thin;
        scrollbar-color: #475569 rgba(17, 24, 39, 0.6);
    }

    .dedication-item {
        display: flex;
        gap: 14px;
        padding: 14px 12px;
        margin-bottom: 12px;
        background: linear-gradient(180deg, rgba(20, 26, 46, 0.85), rgba(12, 18, 34, 0.9));
        border: 1px solid #1d2742;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.35);
        transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    }
    .dedication-item:last-child {
        margin-bottom: 0;
    }
    .dedication-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.45);
        border-color: #2a3a62;
    }
    .dedication-avatar-wrap {
        flex: 0 0 auto;
    }
    .dedication-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    }
    .dedication-content {
        flex: 1 1 auto;
        min-width: 0;
    }
    .dedication-header {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        gap: 10px;
    }
    .dedication-author {
        font-weight: 600;
        color: #e5e7eb;
    }
    .dedication-time {
        color: #9ca3af;
        font-size: 0.85rem;
    }
    .dedication-message {
        margin-top: 6px;
        color: #cbd5e1;
        line-height: 1.6;
        word-wrap: break-word;
        white-space: pre-wrap;
    }
    .dedication-message a {
        color: #93c5fd;
        text-decoration: underline dotted;
    }
    .dedication-message a:hover {
        color: #bfdbfe;
        text-decoration: underline;
    }

    /* badges: user vs guest */
    .dedication-badge {
        display: inline-block;
        font-size: 0.70rem;
        padding: 2px 6px;
        border-radius: 999px;
        margin-left: 8px;
        vertical-align: middle;
    }
    .badge-user {
        background: rgba(34, 197, 94, 0.18);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.35);
    }
    .badge-guest {
        background: rgba(59, 130, 246, 0.18);
        color: #93c5fd;
        border: 1px solid rgba(59, 130, 246, 0.35);
    }

    /* Non-scrolling feed container variant */
    .dedications-feed {
        border: 1px solid #26304a;
        border-radius: 12px;
        padding: 8px 10px;
        background: #0f1426;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

    /* Pagination theming (dark) */
    .pagination .page-link {
        background-color: #0f1426;
        border-color: #26304a;
        color: #cbd5e1;
    }
    .pagination .page-link:hover {
        background-color: #111a30;
        border-color: #2f3b5c;
        color: #e5e7eb;
    }
    .pagination .page-item.active .page-link {
        background-color: #1e2a48;
        border-color: #334066;
        color: #fff;
    }
    .pagination .page-item.disabled .page-link {
        background-color: #0d1428;
        border-color: #202a46;
        color: #64748b;
    }

    /* Responsive tweaks */
    @media (max-width: 480px) {
        .dedication-avatar { width: 44px; height: 44px; }
        .dedication-item { padding: 12px 10px; gap: 12px; }
        .dedication-time { font-size: 0.8rem; }
    }


      .recent-dedications {
          max-height: 400px;
      }

      /* DJ Header mobile */
      .dj-header {
          grid-template-columns: 1fr;
          grid-template-rows: auto auto auto;
          padding: 20px;
          gap: 16px;
      }

      .dj-header-left {
          width: 100px;
          height: 100px;
          margin: 0 auto;
          border: none;
      }

      .dj-header-avatar {
          width: 80px;
          height: 80px;
          border: 2px solid rgba(255, 255, 255, 0.15);
      }

      .dj-header-center {
          text-align: center;
          align-items: center;
      }

      .dj-header-name {
          justify-content: center;
          font-size: 18px;
      }

      .dj-header-description {
          text-align: center;
          font-size: 13px;
      }

      .dj-header-social {
          justify-content: center;
      }

      .dj-header-right {
          flex-direction: row;
          justify-content: center;
          gap: 12px;
      }

      .vote-btn {
          flex: 1;
          max-width: 130px;
          padding: 10px 16px;
      }

      .vip-title {
          font-size: 20px;
      }

      .vip-benefits {
          grid-template-columns: repeat(2, 1fr);
      }

      /* Track list responsive for tablets */
      .track {
          grid-template-columns: 1fr auto 70px;
          padding: 12px 14px;
          gap: 12px;
      }

      .track-info {
          gap: 10px;
      }

      .track-image-container {
          width: 55px;
          min-width: 55px;
          height: 55px;
      }

      .track-details h4 {
          font-size: 14px;
      }

      .track-details p {
          font-size: 12px;
      }

      .track-title {
          font-size: 12px;
      }

      .track-duration {
          font-size: 13px;
      }
  }

  @media (max-width: 480px) {

      /*station header*/
      .station-avatar {
          width: 250px;
          height: 250px;
      }

      .station-play-btn {
          width: 60px;
          height: 60px;
          font-size: 16px;
      }

      .station-name {
          font-size: 28px;
      }

      .station-tags {
          flex-wrap: wrap;
          justify-content: center;
      }

      /*end*/
      .track {
          grid-template-columns: 1fr;
          padding: 12px;
          gap: 12px;
      }

      .track-info {
          width: 100%;
          gap: 12px;
      }

      .track-number {
          display: none;
      }

      .track-title {
          display: none;
      }

      .track-details {
          flex: 1;
      }

      .track-details h4 {
          font-size: 15px;
      }

      .track-details p {
          font-size: 13px;
      }

      .track-duration {
          display: none;
      }
      
      .track-image-container {
          width: 55px;
          min-width: 55px;
          height: 55px;
      }

      .track-play-btn {
          width: 36px;
          height: 36px;
          font-size: 15px;
      }

      .player-controls button {
          width: 28px;
          height: 28px;
          font-size: 14px;
      }

      .play-pause-btn {
          width: 28px;
          height: 28px;
      }

      .vip-benefits {
          grid-template-columns: 1fr;
      }

      .dj-badge {
          font-size: 14px;
      }

      .logo-square {
          width: 40px;
          height: 40px;
      }

      .logo-square i {
          font-size: 20px;
      }

      .logo-text {
          font-size: 20px;
      }
  }

    /* View all link under homepage dedications */
    .view-all-link {
        color: #93c5fd;
        text-decoration: none;
        font-weight: 600;
    }
    .view-all-link:hover {
        color: #bfdbfe;
        text-decoration: underline;
    }

    /* CTA button: View all */
    .btn-view-all {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 999px;
        background: linear-gradient(90deg, #1e2a48, #0f1426);
        border: 1px solid #2f3b5c;
        color: #e5e7eb;
        text-decoration: none;
        font-weight: 700;
        letter-spacing: 0.2px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.35);
        transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
    }
    .btn-view-all:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.45);
        border-color: #3b4e7a;
        color: #ffffff;
        background: linear-gradient(90deg, #243257, #121b33);
    }
    .btn-view-all:active {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    }
    .btn-view-all:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 10px 24px rgba(0,0,0,0.35);
    }

    /* Homepage dedications: header line and actions */
    .dedication-card { border: 1px solid #26304a; border-radius: 12px; padding: 10px 12px; background: #0f1426; box-shadow: 0 6px 20px rgba(0,0,0,0.25); margin-bottom: 10px; }
    .dedication-header-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .dedication-actions { display: flex; align-items: center; gap: 6px; }
    .action-btn { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 8px; background: #0d1428; border: 1px solid #202a46; color: #cbd5e1; cursor: pointer; }
    .action-btn:hover { background: #111a30; border-color: #2f3b5c; color: #fff; }
    .action-btn i { pointer-events: none; font-size: 13px; }