@import "tailwindcss";

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.woff2') format('woff2');
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7p4HM-M.woff2') format('woff2');
}

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --ffp-silver: #c8c8c8;
  --ffp-bright-silver: #f0f0f0;
  --ffp-dark-silver: #707070;
  --ffp-red: #b91c1c;
  --ffp-gold: #d4af37;
  --ffp-green: #007749;
  --ffp-bg: #0a0a0a;
  --ffp-card: #121212;
  --ffp-border: #1a1a1a;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(200, 200, 200, 0.3)) drop-shadow(0 0 60px rgba(200, 200, 200, 0.1));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(200, 200, 200, 0.5)) drop-shadow(0 0 100px rgba(200, 200, 200, 0.2));
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bar-bounce {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.animate-scanline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(180deg, transparent, rgba(200,200,200,0.08), transparent);
  animation: scanline 6s linear infinite;
  pointer-events: none;
}

.animate-grain::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
  z-index: 1;
}

.animate-rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

.text-shimmer {
  background: linear-gradient(90deg, #c8c8c8, #f0f0f0, #c8c8c8, #707070, #c8c8c8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 4s linear infinite;
}

/* ============================================================
   METALLIC THEME
   ============================================================ */
.metallic-border {
  border: 1px solid rgba(200, 200, 200, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.5);
}

.metallic-button {
  background: linear-gradient(180deg, rgba(200,200,200,0.15) 0%, rgba(100,100,100,0.05) 100%);
  border: 1px solid rgba(200, 200, 200, 0.3);
  box-shadow:
    0 0 20px rgba(200, 200, 200, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metallic-button:hover {
  background: linear-gradient(180deg, rgba(200,200,200,0.25) 0%, rgba(100,100,100,0.1) 100%);
  border-color: rgba(200, 200, 200, 0.5);
  box-shadow:
    0 0 40px rgba(200, 200, 200, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.genre-tag {
  background: rgba(200, 200, 200, 0.05);
  border: 1px solid rgba(200, 200, 200, 0.15);
  transition: all 0.3s ease;
}

.genre-tag:hover {
  background: rgba(200, 200, 200, 0.12);
  border-color: rgba(200, 200, 200, 0.4);
  box-shadow: 0 0 20px rgba(200, 200, 200, 0.1);
}

.equalizer-bar {
  width: 4px;
  background: linear-gradient(180deg, #f0f0f0, #707070);
  border-radius: 2px;
  animation: bar-bounce ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--ffp-bg);
  color: #e0e0e0;
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
}

a {
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Orbitron', monospace;
}

.ffp-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
}

.ffp-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

nav a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   ADMIN SIDEBAR
   ============================================================ */
.admin-sidebar {
  background: #121212;
  border-right: 1px solid #1a1a1a;
  min-height: 100vh;
  position: sticky;
  top: 64px;
  overflow-y: auto;
  padding: 1rem;
  width: 256px;
  flex-shrink: 0;
}

.admin-sidebar h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.admin-sidebar a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #888;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-sidebar a.active {
  background: rgba(200, 200, 200, 0.08);
  color: #fff;
  border-left: 3px solid var(--ffp-red);
}

.admin-sidebar a.text-red-400:hover {
  color: #ff4444;
}

/* ============================================================
   ADMIN TABLES
   ============================================================ */
.admin-table {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
}

.admin-table thead {
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
}

.admin-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  font-family: 'Orbitron', sans-serif;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1a1a1a;
  color: #ccc;
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table .actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-table .actions a {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.admin-table .actions .edit {
  color: #60a5fa;
}
.admin-table .actions .edit:hover {
  color: #93bbfc;
}

.admin-table .actions .delete {
  color: #ef4444;
}
.admin-table .actions .delete:hover {
  color: #f87171;
}

.admin-table .actions .publish {
  color: #34d399;
}
.admin-table .actions .publish:hover {
  color: #6ee7b7;
}

/* ============================================================
   ADMIN FORMS
   ============================================================ */
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="date"],
.admin-form input[type="time"],
.admin-form textarea,
.admin-form select {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #e0e0e0;
  width: 100%;
  transition: border-color 0.3s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--ffp-red);
  box-shadow: 0 0 20px rgba(185, 28, 28, 0.1);
}

.admin-form label {
  color: #888;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.admin-form .file-upload {
  background: #1a1a1a;
  border: 2px dashed #2a2a2a;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
}

.admin-form .file-upload:hover {
  border-color: var(--ffp-red);
  background: rgba(185, 28, 28, 0.05);
}

.admin-form .file-upload input[type="file"] {
  display: none;
}

/* ============================================================
   DASHBOARD CARDS
   ============================================================ */
.dashboard-card {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  border-color: var(--ffp-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-card .number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.dashboard-card .label {
  color: #666;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.dashboard-card .link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--ffp-red);
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.dashboard-card .link:hover {
  color: #dc2626;
}

/* ============================================================
   QUICK ACTIONS
   ============================================================ */
.quick-actions {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.quick-actions h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.quick-actions .btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.quick-actions .btn-red {
  background: var(--ffp-red);
  color: #fff;
}

.quick-actions .btn-red:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

/* ============================================================
   RECENT ACTIVITY LIST
   ============================================================ */
.recent-list {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1rem;
}

.recent-list h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.recent-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-list .item-title {
  color: #e0e0e0;
  font-weight: 500;
  flex: 1;
  margin-right: 1rem;
}

.recent-list .item-meta {
  color: #666;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.recent-list .item-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.recent-list .item-status.published {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.recent-list .item-status.draft {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

/* ============================================================
   FRONTEND STORE CARDS
   ============================================================ */
.music-card {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  border-color: var(--ffp-red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.music-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #1a1a1a;
}

.music-card .card-body {
  padding: 1rem;
}

.music-card .card-title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.music-card .card-artist {
  color: #888;
  font-size: 0.85rem;
}

.music-card .card-price {
  font-weight: 700;
  color: var(--ffp-red);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.music-card .card-badge {
  display: inline-block;
  background: var(--ffp-red);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================================
   SHOW CARDS
   ============================================================ */
.show-card {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--ffp-red);
}

.show-card:hover {
  transform: translateY(-4px);
  border-color: var(--ffp-red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.show-card .show-date {
  font-weight: 700;
  color: var(--ffp-red);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.show-card .show-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

.show-card .show-location {
  color: #888;
  font-size: 0.9rem;
}

/* ============================================================
   MAGAZINE CARDS
   ============================================================ */
.magazine-card {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.magazine-card:hover {
  transform: translateY(-4px);
  border-color: var(--ffp-red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.magazine-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.magazine-card .card-body {
  padding: 1.25rem;
}

.magazine-card .issue-badge {
  display: inline-block;
  background: var(--ffp-red);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.15rem 0.75rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.magazine-card .card-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin: 0.5rem 0 0.25rem;
}

.magazine-card .card-excerpt {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================================
   CART
   ============================================================ */
.cart-item {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cart-item .item-info {
  flex: 1;
  min-width: 150px;
}

.cart-item .item-name {
  color: #fff;
  font-weight: 600;
}

.cart-item .item-type {
  color: #666;
  font-size: 0.8rem;
}

.cart-item .item-price {
  color: var(--ffp-red);
  font-weight: 700;
}

.cart-item .item-quantity {
  color: #ccc;
}

.cart-total {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ffp-red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* Admin sidebar collapses */
  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: relative;
    top: 0;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    padding: 0.75rem;
  }

  .admin-sidebar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .admin-sidebar nav a {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  /* Dashboard cards stack */
  .dashboard-cards {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Tables scroll horizontally */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.5rem;
    white-space: nowrap;
  }

  /* Forms stack */
  .admin-form .grid-2 {
    grid-template-columns: 1fr !important;
  }

  /* Navbar */
  nav .flex.gap-6 {
    gap: 0.75rem !important;
  }

  nav a {
    font-size: 0.8rem !important;
  }

  /* Cart items */
  .cart-item {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item .item-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dashboard-cards {
    grid-template-columns: 1fr 1fr !important;
  }

  .dashboard-card .number {
    font-size: 1.5rem;
  }

  .quick-actions .btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .music-card .card-img {
    height: 150px;
  }
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.text-red-600 {
  color: var(--ffp-red);
}

.border-red-600 {
  border-color: var(--ffp-red);
}

.bg-red-600 {
  background: var(--ffp-red);
}

.bg-red-600:hover {
  background: #dc2626;
}

.bg-neutral-900 {
  background: #121212;
}

.bg-neutral-800 {
  background: #1a1a1a;
}

.border-neutral-800 {
  border-color: #1a1a1a;
}

.text-neutral-400 {
  color: #888;
}

.text-neutral-500 {
  color: #666;
}

.text-neutral-300 {
  color: #aaa;
}

/* ============================================================
   SPLASH SCREEN (if used)
   ============================================================ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ffp-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  max-width: 320px;
  width: 80%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.splash-loading {
  position: absolute;
  bottom: 5rem;
  width: 200px;
  text-align: center;
}

.splash-loading .bar {
  width: 100%;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}

.splash-loading .bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #444, #ccc);
  transition: width 0.3s;
}

.splash-loading .text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: #444;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

/* ── Flash Frequency Navbar Player ── */
#ff-nav-player {
    flex: 0 0 auto;
    margin-left: auto;
}

.ff-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px 6px 12px;
    border-radius: 40px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    height: 44px;
    min-width: 200px;
    max-width: 380px;
    transition: border-color 0.3s;
}
.ff-player:hover {
    border-color: rgba(0, 229, 255, 0.35);
}

/* LIVE badge */
.ff-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #ff2a2a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 12px #ff2a2a;
    animation: ff-pulse-red 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ff-pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

/* Play button */
.ff-play-btn {
    background: linear-gradient(135deg, #00e5ff, #00b3cc);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.25);
    transition: transform 0.15s, box-shadow 0.2s;
}
.ff-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 229, 255, 0.4);
}
.ff-play-btn:active { transform: scale(0.92); }
.ff-play-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Track info */
.ff-track {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding: 0 2px;
}
.ff-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ff-artist {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Volume */
.ff-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.ff-mute {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.ff-mute:hover { color: #fff; }
.ff-slider {
    width: 50px;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: width 0.2s;
}
.ff-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00e5ff;
    cursor: pointer;
    border: 2px solid #0a0a0a;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
.ff-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00e5ff;
    cursor: pointer;
    border: 2px solid #0a0a0a;
}

/* Responsive */
@media (max-width: 680px) {
    .ff-player { min-width: unset; padding: 6px 10px; gap: 8px; }
    .ff-slider { width: 30px; }
    .ff-title { font-size: 11px; }
    .ff-artist { display: none; }
    .ff-live-badge { font-size: 9px; }
}
@media (max-width: 480px) {
    .ff-player {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 4px 6px;
        height: 36px;
        gap: 4px;
    }
    .ff-slider { display: none; }
    .ff-volume { gap: 2px; }
    .ff-mute { font-size: 14px; }
    .ff-play-btn { width: 28px; height: 28px; }
    .ff-play-btn svg { width: 14px; height: 14px; }
    .ff-title { font-size: 10px; max-width: 70px; }
    .ff-artist { display: none; }
    .ff-live-badge { font-size: 8px; gap: 4px; }
    .ff-dot { width: 6px; height: 6px; }
}