/* ── Base Styles ───────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
body { 
  margin: 0; 
  font-family: 'Lato', sans-serif; 
  background: #0f0f0f;
  color: #fff;
  min-height: 100vh;
}

/* ── Player Bar ───────────────────────────────────────────────────────────── */
.player-bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 50%, #1a1a1a 100%);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.player-bar::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
/* ── Navigation ─────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 9999;
  gap: 16px;
  overflow: visible;
}

/* Logo */
.nav-logo {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover { color: white; }

/* Center nav links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 36px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: white;
  background: rgba(255,255,255,0.06);
}

.nav-link-icon {
  font-size: 0.65rem;
  opacity: 0.7;
}

.nav-link-arrow {
  font-size: 0.5rem;
  opacity: 0.5;
  margin-left: 2px;
  transition: transform 0.2s;
}

.nav-item:hover .nav-link-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: #1a1a24;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid #1254b5;
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  min-width: 190px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  display: none;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 9999;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  display: block;
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown a i {
  width: 14px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.nav-dropdown a:hover {
  background: rgba(255,255,255,0.05);
  color: white;
  padding-left: 22px;
}

.nav-dropdown a:hover i {
  color: #00c8d6;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btn {
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  height: 26px;
  display: flex;
  align-items: center;
}

.nav-btn-login {
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}

.nav-btn-login:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

.nav-btn-signup {
  color: #fff;
  background: linear-gradient(135deg, #1254b5 0%, #0b92ab 100%);
  box-shadow: 0 2px 8px rgba(18,84,181,0.3);
}

.nav-btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18,84,181,0.4);
}

/* Dropdown divider */
.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}


/* ── Song Title & Controls ─────────────────────────────────────────────────── */
.song-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; 
  letter-spacing: 0.15em; 
  color: #fff; 
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lyrics-wrap {
  width: 300px; 
  height: 1.5em; 
  overflow: hidden; 
  position: relative;
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.lyrics-wrap::before, .lyrics-wrap::after {
  content: ''; 
  position: absolute; 
  top: 0; 
  bottom: 0; 
  width: 30px; 
  z-index: 2;
}
.lyrics-wrap::before { 
  left: 0; 
  background: linear-gradient(to right, #121212, transparent); 
}
.lyrics-wrap::after  { 
  right: 0; 
  background: linear-gradient(to left, #121212, transparent); 
}
.lyrics-text {
  font-size: 0.75rem; 
  color: rgba(255,255,255,0.5); 
  font-style: italic;
  letter-spacing: 0.04em; 
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
  max-width: 100%; 
  padding: 0 30px;
  transition: opacity 0.6s ease;
}
.lyrics-text.fade-out { opacity: 0; }
.lyrics-text.fade-in  { opacity: 1; }
.quote-mark { 
  color: rgba(255,255,255,0.3); 
  margin-right: 4px; 
  font-style: normal; 
}

.ctrl-btn {
  width: 36px; 
  height: 36px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); 
  border-radius: 8px;
  color: rgba(255,255,255,0.7); 
  font-size: 0.85rem;
  background: rgba(255,255,255,0.05); 
  cursor: pointer; 
  transition: all 0.3s ease;
}
.ctrl-btn:hover  { 
  background: rgba(255,255,255,0.12); 
  color: #fff; 
  transform: scale(1.05);
  border-color: rgba(255,255,255,0.3);
}
.ctrl-btn.active { 
  background: rgba(255,255,255,0.15); 
  border-color: rgba(255,255,255,0.3);
}

#volumeSlider {
  -webkit-appearance: none; 
  appearance: none;
  width: 120px; 
  height: 4px; 
  border-radius: 99px; 
  outline: none; 
  cursor: pointer;
  background: rgba(255,255,255,0.15);
}
#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none; 
  width: 14px; 
  height: 14px;
  border-radius: 50%; 
  background: #fff; 
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
#volumeSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
#volumeSlider::-moz-range-thumb {
  width: 14px; 
  height: 14px; 
  border-radius: 50%; 
  background: #fff; 
  border: none; 
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.avatar-wrap { position: relative; }
.avatar-img  { 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  object-fit: cover; 
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.avatar-placeholder {
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  border: 3px solid rgba(255,255,255,0.1);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.6rem; 
  color: rgba(255,255,255,0.6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.avatar-label { 
  font-size: 0.72rem; 
  color: rgba(255,255,255,0.6); 
  text-align: center; 
  margin-top: 6px; 
  letter-spacing: 0.05em; 
  font-weight: 500;
}
.profile-icon {
  width: 40px; 
  height: 40px; 
  border: 2px solid rgba(255,255,255,0.2); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: rgba(255,255,255,0.6); 
  font-size: 1.1rem; 
  cursor: pointer;
  transition: all 0.3s ease;
}
.profile-icon:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* ── Toast Notification ───────────────────────────────────────────────────── */
.toast {
  position: fixed; 
  top: 24px; 
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(224,92,122,0.95), rgba(180,60,90,0.95));
  color: #fff;
  padding: 16px 32px; 
  border-radius: 12px; 
  font-size: 0.95rem;
  font-weight: 600; 
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
  z-index: 9999;
  animation: slideInDown 0.4s ease-out, slideOutUp 0.4s ease-in 2.6s forwards;
  backdrop-filter: blur(10px);
}
@keyframes slideInDown { 
  from { opacity:0; transform:translate(-50%, -20px); } 
  to { opacity:1; transform:translate(-50%, 0); } 
}
@keyframes slideOutUp { 
  from { opacity:1; transform:translate(-50%, 0); } 
  to { opacity:0; transform:translate(-50%, -20px); } 
}

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: none; 
  align-items: center; 
  justify-content: center; 
  z-index: 10000;
}
.modal-overlay.active { display: flex; }
.modal {
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 16px;
  padding: 40px; 
  width: 90%; 
  max-width: 460px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6); 
  position: relative;
  animation: modalSlideUp 0.4s ease-out;
  margin: auto;
}
@keyframes modalSlideUp { 
  from { opacity:0; transform:translateY(40px); } 
  to { opacity:1; transform:translateY(0); } 
}
.modal-title { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2rem; 
  color: #fff; 
  letter-spacing: 0.08em; 
  margin: 0 0 28px 0; 
}
.modal-close { 
  position: absolute; 
  top: 20px; 
  right: 20px; 
  background: none; 
  border: none; 
  color: rgba(255,255,255,0.4); 
  font-size: 1.5rem; 
  cursor: pointer; 
  transition: all 0.2s; 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { 
  color: rgba(255,255,255,0.9); 
  background: rgba(255,255,255,0.1);
}
.form-group { margin-bottom: 24px; }
.form-label { 
  display: block; 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: rgba(255,255,255,0.7); 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin-bottom: 10px; 
}
.form-input, .form-select, .form-textarea {
  width: 100%; 
  padding: 14px 18px; 
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); 
  border-radius: 8px; 
  color: #fff;
  font-size: 0.95rem; 
  font-family: 'Lato', sans-serif; 
  transition: all 0.3s ease; 
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: rgba(255,255,255,0.1); 
  border-color: rgba(18,84,181,0.6);
  box-shadow: 0 0 0 4px rgba(18,84,181,0.1);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-select { 
  cursor: pointer; 
  appearance: none; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); 
  background-repeat: no-repeat; 
  background-position: right 16px center; 
  padding-right: 44px; 
}
.form-select option { background: #1a1a1a; color: #fff; }
.form-textarea { 
  resize: vertical; 
  min-height: 130px; 
  font-family: 'Lato', sans-serif; 
  line-height: 1.6;
}
.modal-btn {
  width: 100%; 
  padding: 16px; 
  margin-top: 20px;
  background: linear-gradient(135deg, #1254b5 0%, #0b92ab 55%, #00c8d6 100%);
  color: #fff; 
  border: none; 
  border-radius: 8px; 
  font-size: 0.95rem;
  font-weight: 700; 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  cursor: pointer; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(18,84,181,0.3);
}
.modal-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(18,84,181,0.4); 
}

/* ── Main Content Area ────────────────────────────────────────────────────── */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ── DJ Banner ───────────────────────────────────────────────────────────── */
.dj-section {
  margin-bottom: 40px;
}

.dj-banner {
  background: transparent;
  border-radius: 0;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: none;
  box-shadow: none;
  min-height: 400px;
}

.dj-promo {
  width: 778px;
  height: 336px;
  background: linear-gradient(140deg, #1254b5 0%, #0b92ab 55%, #00c8d6 100%);
  border-radius: 16px;
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 8px 30px rgba(18,84,181,0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.dj-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.dj-promo-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.dj-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; 
  color: rgba(255,255,255,0.98);
  letter-spacing: 0.06em; 
  margin: 0 0 8px 0;
  line-height: 1.1;
}
.dj-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; 
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em; 
  margin: 0;
}
.dj-underline { 
  text-decoration: underline double; 
  text-underline-offset: 3px; 
  font-style: italic; 
  color: #fff;
}
.dj-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; 
  letter-spacing: 0.08em; 
  color: #fff;
  text-decoration: none; 
  white-space: nowrap;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
  flex-shrink: 0; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.dj-cta:hover { 
  transform: scale(1.05); 
  background: rgba(255,255,255,0.2);
}

.dj-slots {
  flex: 0 0 auto;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.dj-slot { 
  display: flex; 
  align-items: center; 
  gap: 14px;
  padding: 16px;
  background: transparent;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}
.dj-slot:hover {
  background: rgba(255,255,255,0.03);
}
.dj-avatar {
  width: 56px; 
  height: 56px;
  border-radius: 50%; 
  overflow: hidden; 
  flex-shrink: 0;
  background: #333;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.1);
}
.dj-avatar img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.dj-avatar.emoji { font-size: 2rem; background: linear-gradient(135deg, #f5c518, #e0a800); }
.dj-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.dj-when {
  font-size: 0.6rem; 
  font-weight: 800;
  letter-spacing: 0.2em; 
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; 
}
.dj-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; 
  letter-spacing: 0.1em;
  line-height: 1; 
  white-space: nowrap;
}
.dj-name.purple { color: #ce7ee8; }
.dj-name.red    { color: #ef6461; }
.dj-name.green  { color: #4caf7d; }

/* ── Section Headers ───────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; 
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em; 
  margin: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #1254b5, #00c8d6);
  border-radius: 2px;
}
.section-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.section-link:hover {
  color: #00c8d6;
}

/* ── Grid Layout ──────────────────────────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Recently Played ─────────────────────────────────────────────────────── */
.recently-played {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.song-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.song-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 14px;
  padding: 16px 12px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  gap: 10px;
  transition: all 0.3s ease; 
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}
.song-card:hover { 
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.song-cover {
  width: 64px; 
  height: 64px; 
  border-radius: 10px; 
  overflow: hidden;
  background: #252525; 
  flex-shrink: 0;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.song-cover img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.song-cover-placeholder { 
  width: 100%; 
  height: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: rgba(255,255,255,0.2); 
  font-size: 1.4rem; 
}
.song-title-text { 
  font-size: 0.82rem; 
  font-weight: 700; 
  color: rgba(255,255,255,0.95); 
  line-height: 1.3; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  width: 100%; 
}
.song-artist { 
  font-size: 0.7rem; 
  color: rgba(255,255,255,0.45); 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  width: 100%; 
  font-weight: 500;
}

/* ── News Section ─────────────────────────────────────────────────────────── */
.news-section {
  margin-top: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.news-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.news-card:hover { 
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.news-avatar {
  width: 52px; 
  height: 52px; 
  border-radius: 50%; 
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1); 
  background: #252525; 
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.news-avatar img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.news-content {
  flex: 1;
  min-width: 0;
}
.news-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; 
  letter-spacing: 0.06em; 
  color: #fff; 
  line-height: 1.3; 
  margin-bottom: 6px;
}
.news-snippet {
  font-size: 0.75rem; 
  color: rgba(255,255,255,0.45); 
  line-height: 1.4;
  overflow: hidden; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
}
.news-meta {
  font-size: 0.65rem; 
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em; 
  margin-top: 8px;
  display: flex; 
  align-items: center; 
  gap: 6px;
}

/* ── Leaderboard Section ───────────────────────────────────────────────────── */
.leaderboard-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.likes-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.likes-leader {
  background: linear-gradient(135deg, rgba(156,39,176,0.12), rgba(11,146,171,0.08));
  border: 1px solid rgba(156,39,176,0.25);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 25px rgba(156,39,176,0.15);
}
.likes-leader-avatar { 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  overflow: hidden; 
  border: 3px solid rgba(156,39,176,0.4); 
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.likes-leader-avatar img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.likes-leader-meta { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  flex: 1;
}
.likes-leader-name { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.8rem; 
  letter-spacing: 0.06em; 
  color: #ce6be8; 
  line-height: 1; 
}
.likes-leader-count { 
  font-weight: 800; 
  font-size: 0.75rem; 
  color: #fff; 
  background: linear-gradient(135deg, rgba(156,39,176,0.6), rgba(11,146,171,0.5));
  border: 1px solid rgba(156,39,176,0.4); 
  padding: 6px 14px; 
  border-radius: 999px; 
  align-self: start; 
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(156,39,176,0.3);
}

.likes-row { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 12px; 
}
.likes-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 14px;
  padding: 16px 12px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  gap: 10px;
  transition: all 0.3s ease; 
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}
.likes-card:hover { 
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.likes-avatar { 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  overflow: hidden; 
  border: 2px solid rgba(255,255,255,0.1); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.likes-avatar img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.likes-name { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.2rem; 
  letter-spacing: 0.06em; 
  line-height: 1; 
}
.likes-name.orange { color: #ff9800; }
.likes-name.red    { color: #ef5350; }
.likes-name.green  { color: #66bb6a; }
.likes-name.blue   { color: #42a5f5; }
.likes-count { 
  font-size: 0.75rem; 
  color: rgba(255,255,255,0.45); 
  font-weight: 700; 
  letter-spacing: 0.05em; 
}

/* ── Discord Card ─────────────────────────────────────────────────────────── */
.discord-section {
  margin-top: 60px;
}

.discord-card {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 16px; 
  padding: 48px 32px;
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  border: 1px solid rgba(88,101,242,0.5);
  border-radius: 16px; 
  text-decoration: none;
  transition: all 0.3s ease; 
  cursor: pointer; 
  min-height: 200px; 
  width: 100%;
  box-shadow: 0 8px 25px rgba(88,101,242,0.3);
  position: relative;
  overflow: hidden;
}
.discord-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.discord-card:hover { 
  background: linear-gradient(135deg, #6D77F3 0%, #5863D1 100%); 
  transform: translateY(-4px); 
  box-shadow: 0 12px 35px rgba(88,101,242,0.4); 
}
.discord-icon { 
  font-size: 4rem; 
  color: #fff; 
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.discord-label { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.8rem; 
  letter-spacing: 0.08em; 
  color: #fff; 
  line-height: 1; 
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.discord-sub { 
  font-size: 0.95rem; 
  color: rgba(255,255,255,0.9); 
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── No Data Message ─────────────────────────────────────────────────────── */
.no-data-message { 
  color: rgba(255,255,255,0.3); 
  font-size: 0.9rem; 
  padding: 40px 20px; 
  text-align: center; 
  width: 100%; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px; 
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.1);
}
.no-data-icon { 
  font-size: 2.2rem; 
  opacity: 0.3; 
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: white;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  transform: translateY(-2px);
}

.footer-links-column {
  flex: 1;
  min-width: 200px;
}

.footer-links-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: #e05c7a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-copy strong {
  color: white;
  font-weight: 600;
}

.footer-copy a {
  color: #e05c7a;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: white;
}

.footer-sep {
  color: rgba(255,255,255,0.2);
}

.footer-heart {
  color: #e05c7a;
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
