/*
Theme Name: Hits Radio
Theme URI: https://hitsradio.ee
Author: Hits Radio
Author URI: https://hitsradio.ee
Description: Kaasaegne raadio-teema Hits Radio jaoks. Toetab live raadioplayerit, saadete ajakava, podcaste, DJ-de profiile ja Elementorit. Inspireeritud Pro.Radio disainikeelest.
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hits-radio
Tags: radio, music, elementor, dark, podcast, one-column, two-columns, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Variables — Pro.Radio inspireeritud tume + roosa/punane aktsent
   ========================================================================== */
:root {
  --hr-bg: #0a0a0f;
  --hr-bg-alt: #111118;
  --hr-bg-card: #16161f;
  --hr-bg-elevated: #1c1c28;
  --hr-text: #ffffff;
  --hr-text-muted: #a0a0b0;
  --hr-text-dim: #6b6b7c;
  --hr-accent: #ff2d55;
  --hr-accent-hover: #ff4d6d;
  --hr-accent-soft: rgba(255, 45, 85, 0.12);
  --hr-accent-glow: rgba(255, 45, 85, 0.4);
  --hr-border: rgba(255, 255, 255, 0.08);
  --hr-border-strong: rgba(255, 255, 255, 0.15);

  --hr-font-display: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --hr-font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --hr-font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --hr-radius-sm: 6px;
  --hr-radius: 12px;
  --hr-radius-lg: 20px;
  --hr-radius-pill: 999px;

  --hr-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --hr-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --hr-shadow-glow: 0 0 30px var(--hr-accent-glow);

  --hr-container: 1280px;
  --hr-header-h: 80px;
  --hr-player-h: 90px;

  --hr-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hr-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hr-text);
  background: var(--hr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--hr-player-h); /* sticky player ruumi jaoks */
}

a {
  color: var(--hr-accent);
  text-decoration: none;
  transition: color var(--hr-transition);
}

a:hover {
  color: var(--hr-accent-hover);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hr-font-display);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { margin: 0 0 1em; }

.hr-container {
  width: 100%;
  max-width: var(--hr-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.hr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--hr-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--hr-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--hr-transition);
  white-space: nowrap;
}

.hr-btn-primary {
  background: var(--hr-accent);
  color: #fff;
}

.hr-btn-primary:hover {
  background: var(--hr-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--hr-shadow-glow);
}

.hr-btn-outline {
  border-color: var(--hr-border-strong);
  color: var(--hr-text);
  background: transparent;
}

.hr-btn-outline:hover {
  border-color: var(--hr-accent);
  color: var(--hr-accent);
}

/* ==========================================================================
   Header
   ========================================================================== */
.hr-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hr-border);
  height: var(--hr-header-h);
  display: flex;
  align-items: center;
}

.hr-site-header .hr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hr-site-branding img {
  max-height: 50px;
  width: auto;
}

.hr-site-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.hr-site-title a {
  color: var(--hr-text);
}

.hr-main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hr-main-nav a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--hr-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--hr-radius-sm);
  transition: all var(--hr-transition);
}

.hr-main-nav a:hover,
.hr-main-nav .current-menu-item > a {
  color: var(--hr-accent);
  background: var(--hr-accent-soft);
}

.hr-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hr-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--hr-accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--hr-radius-pill);
  transition: all var(--hr-transition);
}

.hr-listen-btn:hover {
  background: var(--hr-accent-hover);
  color: #fff;
  transform: scale(1.05);
}

.hr-listen-btn::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: hr-pulse 1.5s ease-in-out infinite;
}

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

.hr-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hr-border-strong);
  color: var(--hr-text);
  width: 44px;
  height: 44px;
  border-radius: var(--hr-radius-sm);
  cursor: pointer;
  font-size: 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hr-hero {
  position: relative;
  padding: 80px 0 120px;
  background: radial-gradient(circle at 20% 30%, rgba(255, 45, 85, 0.15), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 45, 85, 0.08), transparent 50%),
              var(--hr-bg);
  overflow: hidden;
}

.hr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hr-hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hr-hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--hr-accent-soft);
  color: var(--hr-accent);
  border: 1px solid var(--hr-accent);
  border-radius: var(--hr-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hr-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
}

.hr-hero h1 span {
  color: var(--hr-accent);
}

.hr-hero p.hr-hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--hr-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.hr-section {
  padding: 80px 0;
}

.hr-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.hr-section-eyebrow {
  display: inline-block;
  color: var(--hr-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hr-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.hr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ==========================================================================
   Show / DJ / Podcast Cards
   ========================================================================== */
.hr-card {
  background: var(--hr-bg-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  overflow: hidden;
  transition: all var(--hr-transition);
  position: relative;
}

.hr-card:hover {
  border-color: var(--hr-accent);
  transform: translateY(-4px);
  box-shadow: var(--hr-shadow-lg);
}

.hr-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hr-bg-elevated);
}

.hr-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hr-card:hover .hr-card-image img {
  transform: scale(1.05);
}

.hr-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--hr-transition);
}

.hr-card:hover .hr-card-play {
  opacity: 1;
}

.hr-card-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: transform var(--hr-transition);
}

.hr-card-play-btn:hover {
  transform: scale(1.1);
}

.hr-card-play-btn::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.hr-card-body {
  padding: 20px;
}

.hr-card-meta {
  display: inline-block;
  padding: 4px 12px;
  background: var(--hr-accent-soft);
  color: var(--hr-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--hr-radius-pill);
  margin-bottom: 12px;
}

.hr-card-title {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.hr-card-title a {
  color: var(--hr-text);
}

.hr-card-title a:hover {
  color: var(--hr-accent);
}

.hr-card-time,
.hr-card-host {
  font-size: 14px;
  color: var(--hr-text-muted);
  margin: 0;
}

.hr-card-time::before {
  content: '🕐 ';
  font-size: 12px;
}

/* ==========================================================================
   Schedule (Saadete ajakava)
   ========================================================================== */
.hr-schedule {
  background: var(--hr-bg-alt);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  overflow: hidden;
}

.hr-schedule-tabs {
  display: flex;
  border-bottom: 1px solid var(--hr-border);
  background: var(--hr-bg-card);
}

.hr-schedule-tab {
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--hr-text-muted);
  font-family: var(--hr-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color var(--hr-transition);
}

.hr-schedule-tab:hover {
  color: var(--hr-text);
}

.hr-schedule-tab.active {
  color: var(--hr-text);
}

.hr-schedule-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hr-accent);
}

.hr-schedule-content {
  display: none;
}

.hr-schedule-content.active {
  display: block;
}

.hr-schedule-item {
  display: grid;
  grid-template-columns: 100px 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hr-border);
  transition: background var(--hr-transition);
}

.hr-schedule-item:last-child {
  border-bottom: none;
}

.hr-schedule-item:hover {
  background: var(--hr-bg-card);
}

.hr-schedule-time {
  font-family: var(--hr-font-mono);
  font-size: 14px;
  color: var(--hr-accent);
  font-weight: 700;
}

.hr-schedule-img {
  width: 64px;
  height: 64px;
  border-radius: var(--hr-radius-sm);
  overflow: hidden;
  background: var(--hr-bg-elevated);
}

.hr-schedule-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hr-schedule-info h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.hr-schedule-host {
  font-size: 13px;
  color: var(--hr-text-muted);
  margin: 0;
}

.hr-schedule-link {
  font-size: 12px;
  color: var(--hr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hr-schedule-link:hover {
  color: var(--hr-accent);
}

/* ==========================================================================
   Team / DJ Profiles
   ========================================================================== */
.hr-team-card {
  background: var(--hr-bg-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  overflow: hidden;
  transition: all var(--hr-transition);
}

.hr-team-card:hover {
  border-color: var(--hr-accent);
  transform: translateY(-4px);
}

.hr-team-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--hr-bg-elevated);
  position: relative;
}

.hr-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: all 0.6s ease;
}

.hr-team-card:hover .hr-team-image img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.hr-team-body {
  padding: 24px;
}

.hr-team-role {
  color: var(--hr-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hr-team-name {
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.hr-team-bio {
  color: var(--hr-text-muted);
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.6;
}

.hr-team-social {
  display: flex;
  gap: 10px;
}

.hr-team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-bg-elevated);
  color: var(--hr-text-muted);
  border-radius: 50%;
  font-size: 14px;
  transition: all var(--hr-transition);
}

.hr-team-social a:hover {
  background: var(--hr-accent);
  color: #fff;
}

/* ==========================================================================
   Live Radio Player (Sticky bottom)
   ========================================================================== */
.hr-radio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--hr-player-h);
  background: rgba(15, 15, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--hr-border-strong);
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.hr-radio-player-inner {
  height: 100%;
  max-width: var(--hr-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.hr-player-now {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hr-player-cover {
  width: 56px;
  height: 56px;
  border-radius: var(--hr-radius-sm);
  background: var(--hr-bg-elevated);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.hr-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hr-player-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 60%, rgba(255, 45, 85, 0.3));
  opacity: 0;
  transition: opacity var(--hr-transition);
}

.hr-radio-player.playing .hr-player-cover::after {
  opacity: 1;
  animation: hr-pulse-bg 2s ease-in-out infinite;
}

@keyframes hr-pulse-bg {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hr-player-info {
  min-width: 0;
  overflow: hidden;
}

.hr-player-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--hr-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hr-player-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--hr-accent);
  border-radius: 50%;
  animation: hr-pulse 1.5s ease-in-out infinite;
}

.hr-player-track {
  font-size: 15px;
  font-weight: 600;
  color: var(--hr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.hr-player-artist {
  font-size: 13px;
  color: var(--hr-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0 0;
}

.hr-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hr-play-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hr-accent);
  border: none;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--hr-transition);
}

.hr-play-toggle:hover {
  background: var(--hr-accent-hover);
  transform: scale(1.05);
  box-shadow: var(--hr-shadow-glow);
}

.hr-play-toggle .icon-play {
  display: block;
  width: 0;
  height: 0;
  border-left: 16px solid currentColor;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.hr-play-toggle .icon-pause {
  display: none;
  width: 18px;
  height: 18px;
  position: relative;
}

.hr-play-toggle .icon-pause::before,
.hr-play-toggle .icon-pause::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: currentColor;
  border-radius: 1px;
}

.hr-play-toggle .icon-pause::before { left: 2px; }
.hr-play-toggle .icon-pause::after { right: 2px; }

.hr-radio-player.playing .icon-play { display: none; }
.hr-radio-player.playing .icon-pause { display: block; }

.hr-player-extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.hr-player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hr-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  background: var(--hr-bg-elevated);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.hr-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--hr-accent);
  border-radius: 50%;
  cursor: pointer;
}

.hr-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--hr-accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.hr-volume-icon {
  color: var(--hr-text-muted);
  font-size: 18px;
}

.hr-listeners {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--hr-text-muted);
}

.hr-listeners strong {
  color: var(--hr-text);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hr-footer {
  background: var(--hr-bg-alt);
  border-top: 1px solid var(--hr-border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.hr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.hr-footer h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-accent);
  margin: 0 0 20px;
}

.hr-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hr-footer li {
  margin-bottom: 10px;
}

.hr-footer a {
  color: var(--hr-text-muted);
  font-size: 14px;
}

.hr-footer a:hover {
  color: var(--hr-accent);
}

.hr-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--hr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--hr-text-dim);
}

.hr-social-icons {
  display: flex;
  gap: 12px;
}

.hr-social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-bg-card);
  border: 1px solid var(--hr-border);
  border-radius: 50%;
  color: var(--hr-text-muted);
  transition: all var(--hr-transition);
}

.hr-social-icons a:hover {
  background: var(--hr-accent);
  border-color: var(--hr-accent);
  color: #fff;
}

/* ==========================================================================
   Forms
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  background: var(--hr-bg-card);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius-sm);
  color: var(--hr-text);
  font-family: var(--hr-font-body);
  font-size: 15px;
  transition: border-color var(--hr-transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--hr-accent);
}

/* ==========================================================================
   Single post / Page
   ========================================================================== */
.hr-page-header {
  padding: 80px 0 40px;
  text-align: center;
  background: radial-gradient(circle at center top, rgba(255, 45, 85, 0.1), transparent 60%);
}

.hr-single article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.hr-single img {
  border-radius: var(--hr-radius);
  margin: 24px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hr-menu-toggle { display: flex; align-items: center; justify-content: center; }

  .hr-main-nav {
    position: fixed;
    top: var(--hr-header-h);
    left: 0;
    right: 0;
    background: var(--hr-bg-alt);
    border-bottom: 1px solid var(--hr-border);
    padding: 20px 24px;
    transform: translateY(-150%);
    transition: transform var(--hr-transition);
  }

  .hr-main-nav.open { transform: translateY(0); }

  .hr-main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .hr-main-nav a { padding: 14px 16px; }

  .hr-radio-player-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }

  .hr-player-extra { display: none; }

  .hr-player-cover { width: 48px; height: 48px; }

  .hr-play-toggle { width: 48px; height: 48px; }

  .hr-schedule-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .hr-schedule-img,
  .hr-schedule-link { display: none; }

  .hr-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hr-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
