/* ========================================
   UKV Radio — Design Tokens
   Cyberpunk / Neon Theme
   ======================================== */

:root {
  /* Backgrounds */
  --bg-primary: #0e0e1e;
  --bg-secondary: #151533;
  --bg-card: #1c1c3a;
  --bg-card-hover: #262650;
  --bg-gradient: linear-gradient(135deg, #0e0e1e 0%, #1e0e36 50%, #0e0e1e 100%);
  --bg-gradient-subtle: linear-gradient(180deg, #0e0e1e 0%, #18183a 100%);

  /* Neon Accents */
  --neon-cyan: #00f5ff;
  --neon-magenta: #ff22bb;
  --neon-purple: #c044ff;
  --neon-pink: #ff5c99;
  --neon-green: #4dff2e;
  --neon-yellow: #fff200;

  /* Text */
  --text-primary: #f2f4f8;
  --text-secondary: #bcc3d0;
  --text-muted: #8089a0;
  --text-bright: #ffffff;

  /* Glows */
  --glow-cyan: 0 0 12px #00f5ff, 0 0 35px #00f5ff55, 0 0 70px #00f5ff33;
  --glow-cyan-sm: 0 0 8px #00f5ff, 0 0 25px #00f5ff44;
  --glow-magenta: 0 0 12px #ff22bb, 0 0 35px #ff22bb55, 0 0 70px #ff22bb33;
  --glow-magenta-sm: 0 0 8px #ff22bb, 0 0 25px #ff22bb44;
  --glow-purple: 0 0 12px #c044ff, 0 0 35px #c044ff55, 0 0 70px #c044ff33;

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-neon: 1px solid rgba(0, 245, 255, 0.35);
  --border-neon-bright: 1px solid rgba(0, 245, 255, 0.7);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-nav: 100;
  --z-player: 90;
  --z-overlay: 200;
  --z-modal: 300;
}
/* ========================================
   UKV Radio — Base Styles
   Reset, Typography, Global
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(192, 68, 255, 0.15) 0%, transparent 50%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  pointer-events: none;
  z-index: -1;
  animation: bg-shift 20s ease-in-out infinite;
}

@keyframes bg-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanline-flicker 8s linear infinite;
}

@keyframes scanline-flicker {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

/* Tech background noise */
.tech-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0, 245, 255, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 34, 187, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(192, 68, 255, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: -2;
  animation: tech-pulse 10s ease-in-out infinite;
}

@keyframes tech-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Glitch overlay effect */
.glitch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: glitch-flash 5s linear infinite;
}

.glitch-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-cyan);
  animation: glitch-scan 3s linear infinite;
  opacity: 0.6;
}

@keyframes glitch-flash {
  0%, 95%, 100% { opacity: 0; }
  96% { opacity: 1; }
  97% { opacity: 0; }
  98% { opacity: 0.5; }
}

@keyframes glitch-scan {
  0% { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(0, 240, 255, 0.5);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--neon-magenta);
  text-shadow: var(--glow-magenta-sm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: var(--font-body);
  color: var(--text-primary);
}

code, .mono {
  font-family: var(--font-mono);
}

/* Selection */
::selection {
  background: rgba(0, 240, 255, 0.3);
  color: var(--text-bright);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.5);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.section-title p {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  margin-top: var(--space-md);
}

/* Visually hidden (accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Logo mark (inline antenna/waves glyph) ---- */
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(0, 245, 255, 0.8));
  animation: logo-pulse 2.5s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 7px rgba(0, 245, 255, 0.8)); }
  33% { filter: drop-shadow(0 0 14px rgba(255, 34, 187, 0.9)); }
  66% { filter: drop-shadow(0 0 12px rgba(192, 68, 255, 0.85)); }
}
@media (max-width: 380px) {
  .logo-mark { width: 30px; height: 30px; }
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  background: rgba(14, 14, 30, 0.9);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.3);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
  background: rgba(0, 245, 255, 0.15);
}
/* ========================================
   UKV Radio — Visual Effects
   Glitch, Glow, Scanlines, Equalizer
   ======================================== */

/* ---- Glitch Text Effect ---- */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.glitch::before {
  color: var(--neon-cyan);
  animation: glitch-shift-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  z-index: -1;
}

.glitch::after {
  color: var(--neon-magenta);
  animation: glitch-shift-2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  z-index: -1;
}

@keyframes glitch-shift-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(3px, -1px); }
  94% { transform: translate(-3px, 1px); }
  96% { transform: translate(2px, 0); }
  98% { transform: translate(-1px, -1px); }
}

@keyframes glitch-shift-2 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(-3px, 1px); }
  93% { transform: translate(3px, -1px); }
  95% { transform: translate(-2px, 0); }
  97% { transform: translate(1px, 1px); }
}

/* ---- Neon Glow Text ---- */
.glow-text {
  text-shadow: var(--glow-cyan);
}

.glow-text-magenta {
  text-shadow: var(--glow-magenta);
}

.glow-text-purple {
  text-shadow: var(--glow-purple);
}

/* ---- Neon Border Glow ---- */
.neon-border {
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow:
    inset 0 0 20px rgba(0, 240, 255, 0.05),
    0 0 15px rgba(0, 240, 255, 0.1);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.neon-border:hover {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow:
    inset 0 0 30px rgba(0, 240, 255, 0.08),
    0 0 25px rgba(0, 240, 255, 0.2);
}

/* ---- Pulse Animation (LIVE badge) ---- */
.pulse-ring {
  position: relative;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--neon-magenta);
  animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* ---- Equalizer Bars ---- */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.equalizer .bar {
  width: 4px;
  background: var(--neon-cyan);
  border-radius: 2px;
  animation: eq-bounce 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 6px var(--neon-cyan);
}

.equalizer .bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.equalizer .bar:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.equalizer .bar:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.equalizer .bar:nth-child(4) { height: 90%; animation-delay: 0.1s; }
.equalizer .bar:nth-child(5) { height: 60%; animation-delay: 0.25s; }

@keyframes eq-bounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.equalizer.paused .bar {
  animation-play-state: paused;
  transform: scaleY(0.15);
}

/* ---- Float Animation ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* ---- Fade In Up ---- */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
  opacity: 0;
}

/* ---- Typing Cursor ---- */
.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--neon-cyan);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---- Hover Glow Card ---- */
.hover-glow {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.15);
}

/* ---- Gradient Border ---- */
.gradient-border {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- Neon Line ---- */
.neon-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  border: none;
  margin: var(--space-xl) 0;
}

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

.shimmer {
  background: linear-gradient(
    90deg,
    var(--text-primary) 0%,
    var(--neon-cyan) 50%,
    var(--text-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ---- Animated gradient flow (for card borders) ---- */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card.animated-border {
  border: 2px solid transparent;
  background-clip: padding-box;
}
.card.animated-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple), var(--neon-cyan));
  background-size: 300% 300%;
  animation: gradient-flow 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.card.animated-border:hover::before {
  opacity: 1;
}
.card.animated-border:hover {
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(0, 245, 255, 0.18), 0 0 40px rgba(192, 68, 255, 0.12);
}

/* ---- Pulsing neon line ---- */
.neon-line.pulse {
  animation: neon-line-pulse 2.5s ease-in-out infinite;
}
@keyframes neon-line-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; box-shadow: 0 0 16px var(--neon-cyan); }
}
/* ========================================
   UKV Radio — Layout
   Header, Footer, Nav, Grid
   ======================================== */

/* ---- Header / Navbar ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  transition: background var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 1px rgba(0, 240, 255, 0.6);
}

.logo .accent {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-sm);
  animation: accent-glow 3s ease-in-out infinite;
}
@keyframes accent-glow {
  0%, 100% { color: var(--neon-cyan); text-shadow: 0 0 8px #00f5ff, 0 0 20px #00f5ff44; }
  50% { color: var(--neon-magenta); text-shadow: 0 0 12px #ff22bb, 0 0 28px #ff22bb55; }
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan-sm);
  transition: width var(--transition-base);
}

.nav a:hover,
.nav a.active {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-sm);
}

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

/* ---- Header Weather Widget ---- */
.header-weather {
  position: relative;
  display: flex;
  align-items: center;
}

.hw-main {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: background 0.2s;
}

.hw-main:hover {
  background: rgba(0, 240, 255, 0.1);
}

.hw-icon {
  display: flex;
  width: 20px;
  height: 20px;
}

.hw-icon svg {
  width: 100%;
  height: 100%;
}

.hw-temp {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.03em;
}

.hw-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
}

.header-weather:hover .hw-tooltip {
  display: block;
}

.hw-tooltip-inner {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 3px 0;
}

.hw-label {
  color: var(--text-muted);
}

.hw-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ---- Main Content ---- */
.main {
  padding-top: 70px;
  min-height: 100vh;
  position: relative;
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Hero: живое фото города на фоне */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/city/city-08.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(1.1) contrast(1.05);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 24, 0.62) 0%, rgba(8, 10, 24, 0.35) 45%, rgba(8, 10, 24, 0.82) 100%);
}

/* ---- Page hero: фото-шапка внутренних страниц ---- */
.page-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 24, 0.5) 0%, rgba(8, 10, 24, 0.85) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xs);
}

.page-hero p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 560px;
}

.page-hero + .section {
  padding-top: var(--space-2xl);
}

@media (max-width: 640px) {
  .page-hero {
    height: 180px;
  }
  .page-hero h1 {
    font-size: var(--text-2xl);
  }
  .page-hero p {
    font-size: var(--text-base);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.hero-bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.hero-bg-particles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.hero-player-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-icon-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.feature-icon-magenta {
  background: rgba(255, 0, 170, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 170, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.1);
}

.feature-icon-yellow {
  background: rgba(255, 230, 0, 0.1);
  color: var(--neon-yellow);
  border: 1px solid rgba(255, 230, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.1);
}

.feature-icon-purple {
  background: rgba(176, 38, 255, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(176, 38, 255, 0.2);
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.1);
}

.feature-icon-green {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.feature-icon-pink {
  background: rgba(255, 45, 123, 0.1);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 123, 0.2);
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.1);
}

.feature-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-2xl) auto 0;
  padding: var(--space-lg) var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan-sm);
}

/* ---- Grid System ---- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
/* ========================================
   UKV Radio — Components
   Buttons, Cards, Badges, Forms
   ======================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.7em 1.6em;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan-sm);
}

.btn-primary:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.06);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-magenta);
  border: 1px solid var(--neon-magenta);
}

.btn-secondary:hover {
  background: rgba(255, 0, 170, 0.1);
  box-shadow: var(--glow-magenta);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1em 2.2em;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.4em 1em;
  font-size: var(--text-xs);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon.cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.card-icon.magenta {
  background: rgba(255, 0, 170, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 170, 0.2);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.1);
}

.card-icon.purple {
  background: rgba(176, 38, 255, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(176, 38, 255, 0.2);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.1);
}

.card h3, .card h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
}

.badge-live {
  background: rgba(255, 0, 170, 0.2);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 170, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.2);
}

.badge-live .dot {
  width: 8px;
  height: 8px;
  background: var(--neon-magenta);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-magenta);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.badge-cyan {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.badge-purple {
  background: rgba(176, 38, 255, 0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(176, 38, 255, 0.3);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
}

/* ---- Form Elements ---- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8em 1em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1), var(--glow-cyan-sm);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: var(--space-xl) 0;
}

/* ---- Tag ---- */
.tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-sm);
}

/* ---- Loading Spinner ---- */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

/* ---- News Cards ---- */
.news-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 245, 255, 0.15);
}
.news-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,245,255,0.08), rgba(192,68,255,0.06));
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: var(--space-lg);
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.news-card-source {
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  text-transform: uppercase;
}
.news-card-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.news-card-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text-primary);
}
.news-card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
}

/* ---- Home News Cards ---- */
.home-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.home-news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 245, 255, 0.12);
}
.home-news-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,245,255,0.06), rgba(192,68,255,0.04));
}
.home-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-news-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-news-source {
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.home-news-text {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-primary);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-sm);
}
/* ========================================
   UKV Radio — Player Styles
   ======================================== */

/* ---- Player Container ---- */
.player {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  overflow: hidden;
  max-width: 380px;
  width: 380px;
  margin: 0 auto;
  flex-shrink: 0;
}

.player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
}

/* ---- Player Header ---- */
.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.player-status {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.player-status .label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.player-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.player-status .dot.live {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.player-status .dot.error {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

.player-status.is-live .label {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-sm);
}

/* ---- Player Artwork / Visualizer ---- */
.player-visualizer {
  width: 100%;
  height: 140px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.player-visualizer .logo-display {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  z-index: 1;
  user-select: none;
}

/* Circular equalizer */
.circular-eq {
  position: absolute;
  width: 120px;
  height: 120px;
}

.circular-eq .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.circular-eq .ring:nth-child(1) {
  border-top-color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  animation: rotate 3s linear infinite;
}

.circular-eq .ring:nth-child(2) {
  inset: 15px;
  border-left-color: var(--neon-magenta);
  border-right-color: var(--neon-magenta);
  animation: rotate 4s linear infinite reverse;
}

.circular-eq .ring:nth-child(3) {
  inset: 30px;
  border-top-color: var(--neon-purple);
  border-bottom-color: var(--neon-purple);
  animation: rotate 2.5s linear infinite;
}

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

/* Paused state — slow rings */
.player-visualizer.paused .circular-eq .ring {
  animation-duration: 12s !important;
  opacity: 0.4;
}

.player-visualizer.paused .logo-display {
  opacity: 0.5;
}

.play-btn {
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.play-btn svg {
  transition: opacity 0.15s ease;
}

/* ---- Track Info ---- */
.player-track {
  text-align: center;
  margin-bottom: 4px;
}

.player-track .track-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track .track-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track .track-artist {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Controls ---- */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: 4px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--glow-cyan-sm);
}

.play-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  box-shadow: var(--glow-cyan);
  transform: scale(1.05);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn svg {
  width: 18px;
  height: 18px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--glow-cyan-sm);
}

.play-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  box-shadow: var(--glow-cyan);
  transform: scale(1.05);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn svg {
  width: 22px;
  height: 22px;
}

/* ---- Volume ---- */
.player-volume {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.player-volume .icon {
  color: var(--text-muted);
  font-size: var(--text-lg);
}

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

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--neon-cyan);
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 8px var(--neon-cyan);
  cursor: pointer;
}

/* ---- Equalizer in Player ---- */
.player-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 20px;
}

.player-eq .bar {
  width: 3px;
  background: var(--neon-cyan);
  border-radius: 1px;
  box-shadow: 0 0 4px var(--neon-cyan);
  transition: height 0.15s ease;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--space-lg);
  margin-top: -80px;
  position: relative;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto var(--space-md);
}

/* ---- Feature Cards Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.feature-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--text-sm);
}

/* ---- Hero Player Layout with Banners ---- */
.hero-player-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-banner {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
}

.banner-placeholder {
  width: 200px;
  height: 100%;
  background: rgba(0, 240, 255, 0.03);
  border: 1px dashed rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.banner-placeholder:hover {
  opacity: 0.7;
}

.banner-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Styled Banner Ads ---- */
.banner-ad {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.banner-ad:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.banner-ad-1 {
  background: linear-gradient(135deg, #0a1628 0%, #1a0a2e 50%, #0a1628 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.banner-ad-2 {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0a1a 50%, #1a0a2e 100%);
  border: 1px solid rgba(176, 38, 255, 0.2);
  cursor: default;
}

.banner-ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  text-align: center;
  gap: var(--space-sm);
}

.banner-ad-icon {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  line-height: 0;
}

.banner-ad-icon svg {
  width: 60px;
  height: 60px;
  display: block;
}

.banner-ad-2 .banner-ad-icon {
  color: var(--neon-purple);
  filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.5));
}

.banner-ad-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-bright);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.banner-ad-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.banner-ad-cta {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-top: auto;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.banner-ad-badge {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-magenta);
  background: rgba(255, 0, 170, 0.15);
  border: 1px solid rgba(255, 0, 170, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ---- Banner: News + Weather ---- */
.banner-ad-kicker {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
}

.banner-ad-2 .banner-ad-kicker {
  color: var(--neon-purple);
}

.banner-news-text {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-bright);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-news-source {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-weather-temp {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-bright);
  text-shadow: 0 0 14px rgba(176, 38, 255, 0.6);
}

.banner-weather-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.banner-weather-tomorrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: auto;
}

/* ---- Banner photo / weather backgrounds ---- */
.banner-ad-content {
  position: relative;
  z-index: 1;
}

.banner-ad-1.has-photo {
  background-size: cover;
  background-position: center;
}

.banner-ad-1.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 12, 26, 0.55) 0%, rgba(10, 12, 26, 0.85) 100%);
}

/* ---- Weather banner: city photo styled by weather ---- */
.banner-ad-2 {
  background-size: cover;
  background-position: center;
  background-color: #14182e;
  transition: background-image 0.6s ease;
}

/* Readability scrim + time-of-day tint */
.banner-ad-2::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wx-day::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.2) 0%, rgba(8, 10, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(255, 250, 235, 0.05) 0%, rgba(20, 45, 80, 0.3) 100%);
}

.wx-dawn::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.15) 0%, rgba(8, 10, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(255, 190, 110, 0.3) 0%, rgba(70, 45, 95, 0.42) 100%);
}

.wx-dusk::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.2) 0%, rgba(8, 10, 24, 0.6) 100%),
    linear-gradient(180deg, rgba(255, 150, 80, 0.32) 0%, rgba(45, 25, 75, 0.5) 100%);
}

.wx-night::before {
  background: linear-gradient(180deg, rgba(6, 10, 30, 0.55) 0%, rgba(4, 8, 22, 0.8) 100%);
}

/* Condition overlays */
.banner-ad-2::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wx-clear::after {
  background: none;
}

.wx-partly::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(180, 200, 225, 0.14) 100%);
}

.wx-cloudy::after {
  background: linear-gradient(180deg, rgba(150, 165, 185, 0.28) 0%, rgba(90, 105, 130, 0.45) 100%);
}

.wx-fog::after {
  background:
    linear-gradient(180deg, rgba(215, 225, 240, 0.32) 0%, rgba(190, 205, 225, 0.5) 100%),
    linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.22) 40%, transparent 60%),
    linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.18) 75%, transparent 95%);
}

.wx-rain::after {
  background:
    linear-gradient(180deg, rgba(40, 60, 90, 0.4) 0%, rgba(20, 30, 55, 0.6) 100%),
    repeating-linear-gradient(112deg, transparent 0 18px, rgba(220, 235, 255, 0.12) 18px 19px),
    repeating-linear-gradient(112deg, transparent 0 26px, rgba(220, 235, 255, 0.08) 26px 27px);
}

.wx-snow::after {
  background:
    linear-gradient(180deg, rgba(200, 215, 235, 0.22) 0%, rgba(150, 170, 205, 0.35) 100%),
    radial-gradient(2.4px 2.4px at 20% 30%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(2px 2px at 46% 55%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2.6px 2.6px at 68% 26%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.8px 1.8px at 82% 60%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(2.2px 2.2px at 12% 66%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2.4px 2.4px at 56% 82%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 34% 16%, rgba(255, 255, 255, 0.7), transparent);
}

.wx-thunder::after {
  background:
    linear-gradient(180deg, rgba(20, 22, 48, 0.55) 0%, rgba(10, 12, 28, 0.75) 100%),
    radial-gradient(ellipse 110px 64px at 62% 74%, rgba(120, 120, 180, 0.5), transparent 70%),
    radial-gradient(ellipse 140px 84px at 30% 84%, rgba(90, 90, 140, 0.45), transparent 70%);
}

/* ---- Feature Icons ---- */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-md);
  position: relative;
  transition: all var(--transition-base);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.feature-card:hover .feature-icon-cyan {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.6);
}

.feature-icon-magenta {
  background: rgba(255, 0, 170, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 0, 170, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 170, 0.2), inset 0 0 15px rgba(255, 0, 170, 0.05);
}

.feature-card:hover .feature-icon-magenta {
  box-shadow: 0 0 25px rgba(255, 0, 170, 0.4), inset 0 0 20px rgba(255, 0, 170, 0.1);
  border-color: rgba(255, 0, 170, 0.6);
}

.feature-icon-yellow {
  background: rgba(255, 230, 0, 0.1);
  color: var(--neon-yellow);
  border: 1px solid rgba(255, 230, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.2), inset 0 0 15px rgba(255, 230, 0, 0.05);
}

.feature-card:hover .feature-icon-yellow {
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.4), inset 0 0 20px rgba(255, 230, 0, 0.1);
  border-color: rgba(255, 230, 0, 0.6);
}

.feature-icon-purple {
  background: rgba(176, 38, 255, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(176, 38, 255, 0.3);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.2), inset 0 0 15px rgba(176, 38, 255, 0.05);
}

.feature-card:hover .feature-icon-purple {
  box-shadow: 0 0 25px rgba(176, 38, 255, 0.4), inset 0 0 20px rgba(176, 38, 255, 0.1);
  border-color: rgba(176, 38, 255, 0.6);
}

.feature-icon-green {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.2), inset 0 0 15px rgba(57, 255, 20, 0.05);
}

.feature-card:hover .feature-icon-green {
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.4), inset 0 0 20px rgba(57, 255, 20, 0.1);
  border-color: rgba(57, 255, 20, 0.6);
}

.feature-icon-pink {
  background: rgba(255, 45, 123, 0.1);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 123, 0.3);
  box-shadow: 0 0 15px rgba(255, 45, 123, 0.2), inset 0 0 15px rgba(255, 45, 123, 0.05);
}

.feature-card:hover .feature-icon-pink {
  box-shadow: 0 0 25px rgba(255, 45, 123, 0.4), inset 0 0 20px rgba(255, 45, 123, 0.1);
  border-color: rgba(255, 45, 123, 0.6);
}
/* ---- Sticky Mini Player (sub-pages) ---- */
body:has(.sticky-player) {
  padding-bottom: 70px;
}

.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 12, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
}

.sticky-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), transparent);
}

.sticky-player .play-btn {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.sticky-player .play-btn svg {
  width: 16px;
  height: 16px;
}

.sticky-player .sp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sticky-player .sp-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.sticky-player .sp-status .dot.live {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.sticky-player .sp-track {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.sticky-player .sp-track-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-player .sp-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 14px;
  flex-shrink: 0;
}

.sticky-player .sp-eq .bar {
  width: 2px;
  background: var(--neon-cyan);
  border-radius: 1px;
  box-shadow: 0 0 3px var(--neon-cyan);
  transition: height 0.15s ease;
}

.sticky-player .sp-eq.paused .bar {
  height: 3px !important;
}

.sticky-player .sp-volume {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sticky-player .sp-volume .icon {
  cursor: pointer;
  font-size: 14px;
}

.sticky-player .volume-slider {
  width: 70px;
}

@media (max-width: 600px) {
  .sticky-player {
    padding: 8px 12px;
    gap: 10px;
  }
  .sticky-player .sp-volume {
    display: none;
  }
  .sticky-player .sp-track-name {
    font-size: var(--text-xs);
  }
}

/* ---- Now Playing Section ---- */
.now-playing-section {
  padding-top: var(--space-lg);
  padding-bottom: 0;
}

.now-playing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.now-playing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
}

.now-playing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(0, 240, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.np-left {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.np-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--neon-magenta);
  margin-bottom: var(--space-md);
}

.np-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-magenta);
  box-shadow: 0 0 10px var(--neon-magenta);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.np-track {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.np-artist {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--space-sm);
}

.np-link {
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
}

.np-right {
  display: flex;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

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

.np-stat-icon {
  color: var(--neon-cyan);
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.np-stat-icon svg {
  width: 24px;
  height: 24px;
}

.np-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-sm);
  line-height: 1;
  transition: color 0.3s ease;
}

.np-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .now-playing-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }
  .np-right {
    justify-content: center;
    gap: var(--space-xl);
  }
  .np-track {
    font-size: var(--text-xl);
  }
}
/* ========================================
   UKV Radio — Responsive
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  .hero-banner {
    display: none !important;
  }

  .hero-player-layout {
    gap: 0 !important;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3.5rem;
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }

  .header-weather {
    display: flex;
  }

  .hw-tooltip {
    display: none !important;
  }

  .header-inner {
    overflow: visible;
  }

  /* Nav mobile */
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav a {
    font-size: var(--text-base);
    padding: var(--space-sm) 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero — плеер на весь экран */
  .hero {
    height: calc(100vh - 70px) !important;
    min-height: calc(100vh - 70px) !important;
    padding-top: 10vh;
    padding-bottom: 0;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }

  .hero-subtitle {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero-badges {
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  /* Hide banners on mobile */
  .hero-banner {
    display: none !important;
  }

  .hero-player-layout {
    gap: 0 !important;
    width: 100%;
  }

  /* Player */
  .player {
    padding: var(--space-sm) var(--space-md);
    width: 100%;
    max-width: 320px;
  }

  .player-visualizer {
    max-height: 100px;
  }

  .player-controls {
    gap: var(--space-md);
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }

  /* Grid */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding-top: var(--space-lg);
  }

  /* Убираем neon-line между hero и features */
  .neon-line {
    display: none !important;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Cards */
  .card {
    padding: var(--space-lg);
  }

  /* Schedule table */
  .schedule-table {
    font-size: var(--text-xs);
  }

  .schedule-table th,
  .schedule-table td {
    padding: var(--space-sm);
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .header-inner {
    height: 60px;
  }

  .main {
    padding-top: 60px;
  }

  .logo {
    font-size: var(--text-base);
  }

  .player-visualizer .logo-display {
    font-size: var(--text-2xl);
  }
}

/* ---- Track like & Hit of the day ---- */
.np-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}
.np-like {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 45, 85, 0.5);
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.14), rgba(176, 38, 255, 0.1));
  color: var(--text-bright);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 45, 85, 0.18), inset 0 0 10px rgba(255, 45, 85, 0.06);
  transition: all var(--transition-base);
}
.np-like svg { width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(255, 45, 85, 0.6)); }
.np-like .like-label { font-size: 0.8rem; }
.np-like:hover {
  border-color: rgba(255, 45, 85, 0.85);
  box-shadow: 0 0 22px rgba(255, 45, 85, 0.45), inset 0 0 12px rgba(255, 45, 85, 0.1);
  transform: translateY(-2px);
}
.np-like.liked {
  border-color: var(--neon-magenta);
  color: var(--neon-magenta);
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.24), rgba(176, 38, 255, 0.18));
  box-shadow: 0 0 26px rgba(255, 45, 85, 0.55), inset 0 0 16px rgba(255, 45, 85, 0.12);
  animation: like-pulse 0.4s ease;
}
.np-hit {
  font-size: var(--text-sm);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.35);
}
@keyframes like-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Sticky player like */
.sp-like {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 45, 85, 0.3);
  background: rgba(255, 45, 85, 0.06);
  transition: all var(--transition-base);
}
.sp-like svg { width: 17px; height: 17px; }
.sp-like:hover { color: var(--neon-magenta); border-color: rgba(255, 45, 85, 0.7); }
.sp-like.liked { color: var(--neon-magenta); border-color: var(--neon-magenta); box-shadow: 0 0 12px rgba(255, 45, 85, 0.4); }

/* ---- News reactions ---- */
.news-card-linkable {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card-reactions {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(0, 245, 255, 0.12);
}
.news-react {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.05);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
}
.news-react svg { width: 19px; height: 19px; }
.news-react:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}
.news-react.like.active {
  border-color: #6ee7a0;
  color: #6ee7a0;
  background: rgba(80, 220, 120, 0.12);
  box-shadow: 0 0 16px rgba(80, 220, 120, 0.35);
}
.news-react.dislike.active {
  border-color: #ff8a92;
  color: #ff8a92;
  background: rgba(255, 80, 90, 0.12);
  box-shadow: 0 0 16px rgba(255, 80, 90, 0.35);
}

