/* ==========================================================================
   Sim Nation Radio - Complete Theme Stylesheet (v4.1)
   ========================================================================== */

:root {
  --bg-main: #09090b;
  --bg-slate: rgba(17, 17, 24, 0.65);
  --border-color: rgba(255, 255, 255, 0.04);
  --border-highlight: rgba(255, 255, 255, 0.08);
  
  --text-main: #f4f4f5;
  --text-sub: #a1a1aa;
  --text-muted: #71717a;
  
  --accent: #00b0ff;
  --accent-rgb: 0, 176, 255;
  --accent-glow: rgba(0, 176, 255, 0.15);
  --accent-orange: #ff7700;
  --accent-green: #00e676;
  
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Rules & Scaffolding --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Ambient Backing Glow Blobs --- */
.ambient-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  transition: background-color 1s ease;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: var(--accent);
  top: 15%;
  left: -5%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background-color: #7c4dff;
  bottom: 15%;
  right: -5%;
}

/* --- App Header & Navigation --- */
.app-header {
  border-bottom: 1px solid var(--border-color);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.header-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.accent-text {
  color: var(--accent);
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

/* Dropdown Menus */
.nav-item.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 8px;
  width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  backdrop-filter: blur(16px);
  margin-top: 4px;
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13.5px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 18px;
}

.caret {
  font-size: 10px;
  transition: var(--transition-fast);
}

.nav-item.dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Header Action Widgets */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-toggle-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.cart-toggle-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-highlight);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--bg-main);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-btn {
  background: #5865f2;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-1px);
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 30px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.user-profile-badge:hover {
  border-color: var(--border-highlight);
  background: rgba(255,255,255,0.06);
}

.user-avatar-round {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.signout-icon-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
  margin-left: 6px;
}

.signout-icon-btn:hover {
  color: var(--text-main);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 20px;
  cursor: pointer;
}

/* --- Premium Buttons System --- */
.btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
}

.btn-primary:hover {
  background: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

/* --- Frosted Glass Panels --- */
.glass-panel {
  background: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

/* --- Layout Views --- */
.main-container {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-view {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.page-view.active-view {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  margin-bottom: 36px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-sub);
  font-size: 15px;
  margin-top: 2px;
}

.text-center {
  text-align: center;
}

/* --- 1. HOMEPAGE VIEW STYLES --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

/* Hero Carousel */
.hero-carousel {
  height: 520px;
  position: relative;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  max-width: 600px;
  transform: translateY(20px);
  transition: transform 0.6s ease-out;
}

.carousel-slide.active .slide-content {
  transform: translateY(0);
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 176, 255, 0.15);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-tag.orange {
  background: rgba(255, 119, 0, 0.15);
  color: var(--accent-orange);
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.slide-content p {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 24px;
}

.slide-buttons {
  display: flex;
  gap: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dots .dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Master Player Card */
.main-player-card {
  height: 520px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.player-cover-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.2) opacity(0.3);
  transition: background-image 1s ease;
}

.player-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.deck-container {
  position: relative;
  margin-bottom: 28px;
}

.disc-turntable {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #27272a 0%, #09090b 70%, #000 100%);
  border: 6px solid rgba(255,255,255,0.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vinyl-art {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #18181b;
}

.vinyl-spindle {
  width: 16px;
  height: 16px;
  background: #18181b;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255,255,255,0.15);
}

.glow-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(var(--accent-rgb), 0) 70%);
  opacity: 0;
  transition: var(--transition);
}

/* Vinyl rotation triggers */
.disc-turntable.playing {
  animation: spin 12s linear infinite;
}

.disc-turntable.playing + .glow-ring {
  opacity: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.live-meta {
  margin-bottom: 20px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 230, 118, 0.2);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-ring-small 1.8s infinite;
}

@keyframes pulse-ring-small {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 1; }
}

.live-meta h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Audio control elements */
.audio-control-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 280px;
  margin-bottom: 24px;
}

.master-play-btn {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  transition: var(--transition-fast);
}

.master-play-btn:hover {
  background: white;
  transform: scale(1.05);
}

.slider-volume-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.volume-mute-btn {
  background: transparent;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition-fast);
}

.volume-mute-btn:hover {
  color: var(--text-main);
}

.volume-slider-bar {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}

.volume-slider-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-main);
}

/* Song metadata label */
.playing-song-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
}

.meta-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playing-song-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.playing-song-box p {
  color: var(--text-sub);
  font-size: 13.5px;
}

/* Homepage Bottom news blocks */
.home-bottom-section {
  margin-top: 56px;
}

.news-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.news-item-placeholder {
  color: var(--text-muted);
  text-align: center;
  padding: 40px;
  grid-column: 1 / -1;
}

.news-post-card {
  padding: 24px;
}

.news-post-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0 6px 0;
}

.news-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-card-meta span {
  margin-right: 16px;
}

.news-excerpt-text {
  color: var(--text-sub);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.news-mesh-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.blue-mesh {
  background: rgba(0, 176, 255, 0.1);
  color: var(--accent);
}

.orange-mesh {
  background: rgba(255, 119, 0, 0.1);
  color: var(--accent-orange);
}

/* --- 2. JOBS VIEW STYLES --- */
.filters-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  color: var(--text-sub);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--text-main);
  background: rgba(255,255,255,0.07);
  border-color: var(--border-highlight);
}

.jobs-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.job-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.job-dept-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-sub);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-meta-type {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.job-desc {
  color: var(--text-sub);
  font-size: 14.5px;
  margin-bottom: 24px;
  flex: 1;
}

/* Apply Form Inputs style */
.studio-form-control {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}

/* --- 3. SHOP VIEW STYLES --- */
.shop-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.shop-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.shop-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.shop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-item-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.shop-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.shop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}

.shop-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* --- 4. ABOUT & STAFF VIEW STYLES --- */
.about-card-block {
  padding: 36px;
}

.about-card-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
}

.crew-category {
  margin-top: 48px;
}

.crew-category h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 24px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.crew-card {
  padding: 32px;
  text-align: center;
}

.crew-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px auto;
  border: 3px solid var(--border-color);
}

.crew-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.crew-role {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.crew-card p {
  font-size: 13.5px;
  color: var(--text-sub);
}

/* --- 5. TIMETABLE VIEW STYLES --- */
.schedule-card {
  padding: 40px;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 2px;
  background: var(--border-color);
}

.timeline-event {
  display: flex;
  position: relative;
}

.event-time {
  width: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  padding-top: 4px;
}

.event-body {
  margin-left: 56px;
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.timeline-event.active .event-body {
  border-color: var(--accent);
  background: rgba(0, 176, 255, 0.03);
  box-shadow: 0 0 15px rgba(0, 176, 255, 0.1);
}

.timeline-event.active::after {
  content: '';
  position: absolute;
  left: 117px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.event-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.event-body p {
  color: var(--text-sub);
  font-size: 14px;
}

/* --- 6. LEADERBOARD & TABLES --- */
.table-container {
  padding: 0;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
}

.premium-table th,
.premium-table td {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-color);
}

.premium-table th {
  font-family: var(--font-display);
  font-weight: 700;
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
}

.premium-table tbody tr:hover {
  background: rgba(255,255,255,0.015);
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(255, 119, 0, 0.15);
  color: var(--accent-orange);
}

.badge-bronze {
  background: rgba(0, 176, 255, 0.15);
  color: var(--accent);
}

.badge-standard {
  background: rgba(255,255,255,0.06);
  color: var(--text-sub);
}

/* --- 7. STATISTICS VIEW --- */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-box {
  padding: 32px;
  text-align: center;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-sub);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- 8. AFFILIATES VIEW --- */
.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.affiliate-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.affiliate-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.affiliate-meta h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.affiliate-meta p {
  font-size: 12px;
  color: var(--text-sub);
}

/* --- 9. MEMBERSHIPS VIEW --- */
.memberships-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.membership-tier-card {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.membership-tier-card.gold {
  border-color: rgba(255, 119, 0, 0.2);
  background: linear-gradient(rgba(17,17,24,0.65), rgba(17,17,24,0.65)), radial-gradient(circle at top right, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
}

.recommended-badge {
  background: var(--accent-orange);
  color: white;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  align-self: center;
  margin-bottom: 16px;
}

.membership-tier-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-pill {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.membership-tier-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.membership-tier-card button {
  margin-top: auto;
}

/* --- 10. FAQ & SUPPORT --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  padding: 24px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.faq-answer {
  display: none;
  font-size: 14.5px;
  color: var(--text-sub);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.02);
}

.faq-card.active .faq-answer {
  display: block;
}

.faq-card.active .caret {
  transform: rotate(180deg);
}

/* --- 11. PROFILE VIEW --- */
.profile-layout-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.profile-card-info {
  padding: 40px;
  text-align: center;
}

.profile-avatar-big {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border-color);
  margin-bottom: 16px;
}

.profile-card-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.applications-timeline {
  font-size: 14.5px;
}

.app-log-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- MODALS & BACKDROPS --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-container {
  width: 100%;
  max-width: 480px;
  padding: 28px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.close-modal-btn:hover {
  color: var(--text-main);
}

/* --- SHOPPING CART DRAWER --- */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.cart-drawer-container {
  width: 100%;
  max-width: 400px;
  height: 100%;
  border-radius: 0;
  border-left: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.close-cart-btn:hover {
  color: var(--text-main);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-cart-message {
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
}

.cart-remove-item {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
}

.cart-remove-item:hover {
  color: #ff1744;
}

.cart-checkout-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 16px;
}

.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}

/* --- Forms & Input styles --- */
.studio-form {
  padding: 0;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 176, 255, 0.10);
}

textarea {
  resize: vertical;
}

.submit-btn {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
  margin-top: 8px;
  margin-bottom: 12px;
}

.submit-btn:hover {
  background: white;
  transform: translateY(-1px);
}

.form-feedback {
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
}

.form-feedback.success { color: var(--accent-green); }
.form-feedback.error { color: #ff1744; }

/* --- App Footer --- */
.app-footer {
  border-top: 1px solid var(--border-color);
  background: rgba(9, 9, 11, 0.6);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 80px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-carousel,
  .main-player-card {
    height: auto;
    min-height: 480px;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .profile-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .jobs-list-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid-row {
    grid-template-columns: 1fr;
  }
  
  .stats-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .memberships-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule-timeline::before {
    left: 80px;
  }
  .event-time {
    width: 60px;
    font-size: 12px;
  }
  .event-body {
    margin-left: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Premium UI/UX Enhancements & Particle/Waveform Animations
   ========================================================================== */

/* Slow-Floating Ambient Blobs Keyframes */
@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1.08); }
  50% { transform: translate(-60px, -40px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1.08); }
}

.blob-1 {
  animation: float-blob-1 25s infinite ease-in-out;
}

.blob-2 {
  animation: float-blob-2 30s infinite ease-in-out;
}

/* Skeleton Shimmer Loaders */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-card {
  background: linear-gradient(90deg, rgba(255,255,255,0.015) 25%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.015) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite ease-in-out;
  border-radius: 18px;
  height: 280px;
  border: 1px solid var(--border-color);
  width: 100%;
}

/* Tactile Button Feedbacks */
.btn:active, 
.submit-btn:active,
.master-play-btn:active,
.discord-btn:active {
  transform: scale(0.96) !important;
}

/* Leaderboard Crown Indicators */
.premium-table tbody tr:nth-child(1) td:first-child strong {
  color: #ffd700;
  position: relative;
}

.premium-table tbody tr:nth-child(1) td:first-child strong::after {
  content: ' 👑';
  font-size: 11px;
}

.premium-table tbody tr:nth-child(2) td:first-child strong {
  color: #c0c0c0;
}

.premium-table tbody tr:nth-child(3) td:first-child strong {
  color: #cd7f32;
}

/* ==========================================================================
   Ultra Premium Radio Player & Dashboard Layout Styles
   ========================================================================== */

/* Mini-Player Bar Pinned Bottom */
.mini-player-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1440px;
  height: 80px;
  background: rgba(17, 17, 24, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 99;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.mini-player-bar:hover {
  border-color: rgba(0, 176, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 176, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}

.mini-player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 28px;
}

.mini-player-info {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  flex: 1;
  max-width: 400px;
}

.mini-player-art {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mini-player-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mini-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 2px;
}

.mini-player-meta h4 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
}

.mini-player-meta p {
  color: var(--text-sub);
  font-size: 12px;
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mini-play-btn {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition-fast);
}

.mini-play-btn:hover {
  background: white;
  transform: scale(1.05);
}

.mini-volume-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-volume-btn {
  background: transparent;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  font-size: 14px;
}

.mini-volume-slider {
  -webkit-appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.mini-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-main);
}

.mini-expand-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  color: var(--text-sub);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition-fast);
}

.mini-expand-btn:hover {
  color: var(--text-main);
  border-color: var(--border-highlight);
}

/* Immersive Screen Overlays */
.immersive-player-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050508;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.immersive-blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(140px) brightness(0.25) saturate(1.8);
  z-index: 0;
  transition: background-image 1.2s ease-in-out;
}

.immersive-overlay-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(9, 9, 11, 0.45) 0%, rgba(9, 9, 11, 0.92) 100%);
  backdrop-filter: blur(36px);
  z-index: 1;
}

.immersive-player-header {
  position: relative;
  z-index: 10;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.immersive-logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.immersive-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.close-immersive-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.close-immersive-btn:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.08);
}

.immersive-player-grid {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.2fr;
  gap: 48px;
  padding: 40px 48px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  overflow-y: auto;
}

/* Left side deck */
.immersive-left-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.giant-vinyl-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #202025 0%, #09090b 70%, #000 100%);
  border: 8px solid rgba(255,255,255,0.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.giant-vinyl-art {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #18181b;
}

.giant-vinyl-art.playing {
  animation: spin 16s linear infinite;
}

.giant-vinyl-spindle {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #18181b;
  border: 4px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Center Side controllers */
.immersive-center-deck {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.immersive-meta-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-top: 12px;
}

.immersive-control-console {
  margin: 40px 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 32px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.console-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.console-play-btn {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
  transition: var(--transition-fast);
}

.console-play-btn:hover {
  background: white;
  transform: scale(1.05);
}

.console-icon-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-sub);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition-fast);
}

.console-icon-btn:hover {
  color: var(--text-main);
  border-color: var(--border-highlight);
  background: rgba(255,255,255,0.07);
}

.console-icon-btn.active-favorite {
  color: #ff1744;
  border-color: rgba(255, 23, 68, 0.3);
  background: rgba(255, 23, 68, 0.08);
  text-shadow: 0 0 8px rgba(255, 23, 68, 0.4);
}

.console-volume-slider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.console-volume-slider {
  -webkit-appearance: none;
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.console-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-main);
}

/* visualizer toggling tabs */
.visualizer-toggle-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.vis-tab {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.vis-tab:hover,
.vis-tab.active {
  color: var(--accent);
  border-color: rgba(0, 176, 255, 0.3);
  background: rgba(0, 176, 255, 0.05);
}

/* Right Side Deck info styles */
.immersive-right-deck {
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}

.info-card-sub {
  border-color: rgba(255,255,255,0.02);
  background: rgba(17, 17, 24, 0.45);
}

.meta-dashboard-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
}

.meta-row span {
  color: var(--text-muted);
}

.meta-row strong {
  color: var(--text-main);
  max-width: 180px;
}

/* Recently played rows style */
.recent-song-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.015);
}

.recent-song-art {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.recent-song-meta {
  flex: 1;
  overflow: hidden;
  text-align: left;
}

.recent-song-meta h5 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.recent-song-meta p {
  color: var(--text-muted);
  font-size: 11px;
}

.recent-song-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Bottom visualizer dock */
.immersive-visualizer-dock {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 160px;
  border-top: 1px solid rgba(255,255,255,0.03);
  background: linear-gradient(to top, rgba(9, 9, 11, 0.4), transparent);
}

#canvas-advanced-visualizer {
  width: 100%;
  height: 100%;
}

/* Favorite item list in profile */
.fav-song-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

.fav-song-meta {
  flex: 1;
  overflow: hidden;
}

.fav-song-meta strong {
  display: block;
}

.fav-song-meta span {
  color: var(--text-muted);
  font-size: 11.5px;
}

.remove-fav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.remove-fav-btn:hover {
  color: #ff1744;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .immersive-player-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .immersive-right-deck {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .info-card-sub {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .immersive-player-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  .immersive-right-deck {
    flex-direction: column;
  }
  .immersive-player-header {
    padding: 24px;
  }
  .mini-player-bar {
    bottom: 8px;
    width: calc(100% - 16px);
  }
  .mini-volume-group {
    display: none;
  }
}

