/*
Theme Name: 432Hertz Radio
Theme URI: https://432hertz.it
Author: 432Hertz Web Radio
Author URI: https://432hertz.it
Description: Tema ufficiale per la web radio 432Hertz. Design vibrante e colorato con player radio integrato, palinsesto, sezione chi siamo e ascoltatori.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 432hertz
Tags: music, radio, dark, colorful, custom-colors, custom-menu, featured-images, full-width-template
*/

/* ─────────────────────────────────────────
   CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --gold:    #FFD700;
  --amber:   #FF8C00;
  --coral:   #FF4D6D;
  --violet:  #9B5DE5;
  --cyan:    #00F5FF;
  --green:   #06D6A0;
  --bg:      #0A0A0F;
  --surface: #12121A;
  --card:    #1A1A26;
  --text:    #F0EEE8;
  --muted:   #7A7A9A;
  --border:  rgba(255,255,255,0.06);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.bebas { font-family: 'Bebas Neue', sans-serif; }
.mono  { font-family: 'Space Mono', monospace; }

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: .05em; }

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-2 {
  background: linear-gradient(90deg, var(--gold), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: .5rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 3rem;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────── */
@keyframes blink        { 0%,100%{opacity:1} 50%{opacity:.2} }
@keyframes pulse-badge  { 0%,100%{box-shadow:0 0 0 0 rgba(255,77,109,.3)} 50%{box-shadow:0 0 0 8px rgba(255,77,109,0)} }
@keyframes float        { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
@keyframes shimmer      { 0%,100%{filter:brightness(1)} 50%{filter:brightness(1.15) drop-shadow(0 0 40px rgba(255,215,0,.4))} }
@keyframes draw-wave    { to { stroke-dashoffset: 0; } }
@keyframes spin-slow    { to { transform: rotate(360deg); } }
@keyframes bounce       { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(0.3)} }
@keyframes slide-grad   { 0%{background-position:0%} 100%{background-position:200%} }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,10,15,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,215,0,.12);
}

.site-branding .site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .08em;
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.site-branding .site-title a { color: inherit; text-decoration: none; }

/* WordPress nav menu */
#primary-navigation { display: flex; align-items: center; gap: 2rem; }
#primary-navigation .menu { display: flex; gap: 2rem; }
#primary-navigation .menu li a {
  font-size: .85rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
#primary-navigation .menu li a:hover,
#primary-navigation .menu li.current-menu-item a { color: var(--gold); }

.live-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,77,109,.15);
  border: 1px solid var(--coral);
  border-radius: 999px; padding: .35rem .9rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--coral);
  animation: pulse-badge 2s infinite;
  white-space: nowrap;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: blink 1s infinite; display: inline-block; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--muted);
  color: var(--muted); border-radius: 8px;
  padding: .4rem .7rem; cursor: pointer; font-size: 1.2rem;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(155,93,229,.25); top: -100px; left: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(255,140,0,.2); top: 20%; right: -80px; animation-delay: -3s; }
.hero-orb-3 { width: 350px; height: 350px; background: rgba(0,245,255,.15); bottom: 10%; left: 30%; animation-delay: -5s; }

.hero-freq {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 30%, var(--coral) 60%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
.hero-hz {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 3vw, 1.6rem);
  letter-spacing: .4em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: -.5rem;
  position: relative; z-index: 1;
}
.hero-tagline {
  margin-top: 1.5rem;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--muted); max-width: 500px; line-height: 1.7;
  position: relative; z-index: 1;
}
.hero-wave { margin-top: 2.5rem; width: 100%; max-width: 700px; position: relative; z-index: 1; }
.wave-path { stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: draw-wave 3s ease forwards; }

/* ─────────────────────────────────────────
   PLAYER
───────────────────────────────────────── */
#player-section {
  padding: 3rem 2rem 5rem;
  display: flex; justify-content: center;
}
.player-card {
  background: var(--card);
  border: 1px solid rgba(255,215,0,.18);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%; max-width: 680px;
  box-shadow: 0 0 60px rgba(155,93,229,.15), 0 0 0 1px rgba(255,255,255,.04);
  position: relative; overflow: hidden;
}
.player-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--coral), var(--violet), var(--cyan));
  background-size: 200% 100%;
  animation: slide-grad 3s linear infinite;
}

.player-now-playing { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2rem; }

.album-art {
  width: 70px; height: 70px; border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
  animation: spin-slow 8s linear infinite paused;
}
.album-art.playing { animation-play-state: running; }

.now-playing-info { flex: 1; min-width: 0; }
.now-playing-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.now-playing-title { font-size: 1.15rem; font-weight: 600; margin-top: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now-playing-artist { font-size: .85rem; color: var(--muted); margin-top: .15rem; }

.visualizer { display: flex; align-items: flex-end; gap: 3px; height: 40px; flex-shrink: 0; }
.bar { width: 4px; border-radius: 2px; background: linear-gradient(to top, var(--gold), var(--amber)); animation: bounce .8s ease-in-out infinite; }
.bar:nth-child(1){ height: 20%; animation-delay:0s; }
.bar:nth-child(2){ height: 60%; animation-delay:.1s; }
.bar:nth-child(3){ height: 90%; animation-delay:.2s; }
.bar:nth-child(4){ height: 40%; animation-delay:.3s; }
.bar:nth-child(5){ height: 75%; animation-delay:.4s; }
.bar:nth-child(6){ height: 30%; animation-delay:.5s; }
.bar:nth-child(7){ height: 85%; animation-delay:.15s; }
.bar:nth-child(8){ height: 50%; animation-delay:.25s; }

.player-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin: 1.8rem 0 1.5rem; }
.btn-play {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 30px rgba(255,215,0,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-play:hover { transform: scale(1.08); box-shadow: 0 0 45px rgba(255,215,0,.6); }
.btn-secondary {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); transition: all .2s;
}
.btn-secondary:hover { background: rgba(255,215,0,.1); border-color: var(--gold); color: var(--gold); }

.volume-control { display: flex; align-items: center; gap: .75rem; }
.volume-icon { color: var(--muted); font-size: 1rem; }
input[type=range] {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); cursor: pointer; box-shadow: 0 0 8px rgba(255,215,0,.6);
}
input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: none;
}

/* listener-count rimosso */

/* Stream URL display */
.stream-url-bar {
  margin-top: 1rem; padding: .6rem 1rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; font-family: 'Space Mono', monospace;
  font-size: .72rem; color: var(--muted); text-align: center;
  word-break: break-all;
}
.stream-url-bar a { color: var(--cyan); }

/* ─────────────────────────────────────────
   PALINSESTO
───────────────────────────────────────── */
#palinsesto { background: var(--bg); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.schedule-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.schedule-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.3); }
.schedule-card.active { border-color: var(--gold); box-shadow: 0 0 30px rgba(255,215,0,.1); }
.schedule-card.active::after {
  content: '● IN ONDA ORA';
  position: absolute; top: 1rem; right: 1rem;
  font-size: .65rem; letter-spacing: .12em; color: var(--coral); font-weight: 700;
  animation: blink 1.5s infinite;
}
.schedule-time { font-family: 'Space Mono', monospace; font-size: .8rem; color: var(--cyan); letter-spacing: .08em; margin-bottom: .6rem; }
.schedule-show { font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.schedule-host { font-size: .82rem; color: var(--muted); }
.schedule-tag {
  display: inline-block; margin-top: .8rem;
  padding: .25rem .7rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.tag-music { background: rgba(155,93,229,.2); color: var(--violet); border: 1px solid rgba(155,93,229,.4); }
.tag-talk  { background: rgba(6,214,160,.2);  color: var(--green);  border: 1px solid rgba(6,214,160,.4); }
.tag-jazz  { background: rgba(255,140,0,.2);  color: var(--amber);  border: 1px solid rgba(255,140,0,.4); }
.tag-news  { background: rgba(0,245,255,.15); color: var(--cyan);   border: 1px solid rgba(0,245,255,.3); }

/* Day tabs */
.day-tabs { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.day-tab {
  padding: .5rem 1.2rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; color: var(--muted); transition: all .2s;
}
.day-tab.active, .day-tab:hover { background: rgba(255,215,0,.12); border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────
   CHI SIAMO
───────────────────────────────────────── */
#chi-siamo {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.freq-circle {
  width: 320px; height: 320px; border-radius: 50%; margin: 0 auto;
  background: conic-gradient(from 0deg, var(--gold), var(--amber), var(--coral), var(--violet), var(--cyan), var(--green), var(--gold));
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 14s linear infinite;
  box-shadow: 0 0 80px rgba(255,215,0,.2);
}
.freq-inner {
  width: 260px; height: 260px; border-radius: 50%; background: var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: spin-slow 14s linear infinite reverse;
}
.freq-inner-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.freq-inner-hz { font-family: 'Space Mono', monospace; font-size: .8rem; color: var(--cyan); letter-spacing: .3em; }

.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1.2rem; }
.about-text h2 .highlight { color: var(--gold); }
.about-text p { color: var(--muted); line-height: 1.8; font-size: .95rem; margin-bottom: 1rem; }

.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.team-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 1.5rem; text-align: center; transition: transform .25s, border-color .25s;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(155,93,229,.3); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto .8rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
}
.team-name { font-weight: 600; font-size: .95rem; }
.team-role { font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* ─────────────────────────────────────────
   ASCOLTATORI
───────────────────────────────────────── */
#ascoltatori { background: var(--bg); }

.listeners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.listener-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.5rem;
  transition: transform .25s, border-color .25s;
}
.listener-card:hover { transform: translateY(-4px); border-color: rgba(0,245,255,.2); }

.listener-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
}
.av-violet { background: linear-gradient(135deg,#9B5DE5,#FF4D6D); }
.av-gold   { background: linear-gradient(135deg,#FF8C00,#FFD700); }
.av-cyan   { background: linear-gradient(135deg,#00F5FF,#06D6A0); }
.av-coral  { background: linear-gradient(135deg,#FF4D6D,#FF8C00); }
.av-green  { background: linear-gradient(135deg,#06D6A0,#9B5DE5); }
.av-blue   { background: linear-gradient(135deg,#00F5FF,#9B5DE5); }

.listener-name { font-weight: 600; font-size: .95rem; }
.listener-city { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold); font-size: .9rem; letter-spacing: .05em; margin-bottom: .6rem; }
.listener-quote { font-size: .88rem; color: var(--muted); line-height: 1.7; font-style: italic; }

/* Community banner */
.community-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(155,93,229,.15), rgba(255,77,109,.1));
  border: 1px solid rgba(155,93,229,.3);
  border-radius: 24px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.community-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: .05em; }
.community-text p { color: var(--muted); font-size: .9rem; margin-top: .3rem; }

.btn-primary {
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  border: none; border-radius: 999px;
  color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: .05em;
  cursor: pointer; display: inline-block; text-align: center;
  box-shadow: 0 4px 30px rgba(155,93,229,.4);
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(155,93,229,.6); color: #fff; }

/* ─────────────────────────────────────────
   CONTATTI (page template)
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form label { display: block; font-size: .82rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; margin-top: 1.2rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: .8rem 1rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: inherit; font-size: .92rem; outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button[type=submit] { margin-top: 1.5rem; width: 100%; }

.contact-info-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; }
.contact-info-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: 1.2rem; color: var(--gold); }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.contact-info-item .icon { font-size: 1.3rem; }
.contact-info-item .label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item .value { font-size: .92rem; margin-top: .15rem; }

.social-links { display: flex; gap: .8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn {
  padding: .5rem 1.1rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: all .2s; color: var(--text);
}
.social-btn:hover { background: rgba(255,215,0,.1); border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#colophon {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block; margin-bottom: .5rem;
}
.footer-brand p { color: var(--muted); font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: 'Space Mono', monospace; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1140px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: var(--muted);
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

.hz432-open-cookie-settings {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  padding: .18rem .62rem;
  cursor: pointer;
  font-size: .73rem;
  transition: all .2s;
}

.hz432-open-cookie-settings:hover {
  color: var(--gold);
  border-color: rgba(255,215,0,.35);
}

.hz432-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  padding: .75rem;
}

.hz432-cookie-banner.is-hidden {
  display: none;
}

.hz432-cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .85rem 1rem;
  display: flex;
  gap: .9rem;
  align-items: center;
  justify-content: space-between;
}

.hz432-cookie-text p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.hz432-cookie-text a {
  color: var(--cyan);
}

.hz432-cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.hz432-cookie-btn {
  border-radius: 999px;
  padding: .48rem .9rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.hz432-cookie-btn--tech:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hz432-cookie-btn--accept {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #111;
  border-color: rgba(255,215,0,.5);
}

.hz432-cookie-btn--accept:hover {
  filter: brightness(1.08);
}

/* ─────────────────────────────────────────
   WORDPRESS CORE OVERRIDES
───────────────────────────────────────── */
.wp-block-image img { border-radius: 12px; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* WP Admin bar offset */
.admin-bar #masthead { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #masthead { top: 46px; } }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #masthead { padding: .8rem 1.2rem; }
  #primary-navigation .menu { display: none; }
  #primary-navigation .menu.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,15,.97); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-stats  { gap: 1.5rem; }
  .freq-circle  { width: 240px; height: 240px; }
  .freq-inner   { width: 190px; height: 190px; }
  .freq-inner-num { font-size: 3.5rem; }

  .hz432-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hz432-cookie-actions {
    width: 100%;
  }

  .hz432-cookie-btn {
    flex: 1;
  }
}

/* ═══════════════════════════════════════════
   SPEAKERS — m2o style grid
═══════════════════════════════════════════ */

/* Hero slim condiviso */
.sp-hero, .news-hero {
  min-height: 38vh;
  display: flex; align-items: flex-end;
  padding: 7rem 2rem 3rem;
  position: relative; overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.sp-hero-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; animation:float 10s ease-in-out infinite; }
.sp-orb-1 { width:500px;height:500px;background:rgba(155,93,229,.2); top:-150px;left:-100px; }
.sp-orb-2 { width:350px;height:350px;background:rgba(255,140,0,.15); bottom:-80px;right:-60px;animation-delay:-4s; }

.sp-hero-content, .news-hero-content { position:relative; z-index:1; max-width:1140px; width:100%; margin:0 auto; }

.sp-eyebrow { font-family:'Space Mono',monospace; font-size:.7rem; letter-spacing:.25em; text-transform:uppercase; color:var(--cyan); margin-bottom:.6rem; }
.sp-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(3.5rem,9vw,7rem); line-height:1; color:var(--text); margin-bottom:.5rem; }
.sp-dot { color:var(--gold); }
.sp-sub { color:var(--muted); font-size:1rem; max-width:500px; line-height:1.7; }

/* Filter bar */
.sp-filter-bar { display:flex; gap:.6rem; flex-wrap:wrap; padding:1.5rem 2rem; max-width:1140px; margin:0 auto; }
.sp-filter-btn {
  padding:.45rem 1.1rem; border-radius:999px;
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  font-size:.8rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  cursor:pointer; color:var(--muted); transition:all .2s;
}
.sp-filter-btn.active, .sp-filter-btn:hover { background:rgba(255,215,0,.12); border-color:var(--gold); color:var(--gold); }

/* Speakers grid — m2o style */
.sp-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:2px;
  max-width:100%;
  padding:0;
}
.sp-grid-small { grid-template-columns:repeat(4,1fr); padding:0 2rem 4rem; max-width:1140px; margin:0 auto; gap:1rem; }

.sp-card {
  display:block; position:relative; overflow:hidden;
  text-decoration:none; color:var(--text);
  background:var(--card);
}

/* Image area */
.sp-card-img { position:relative; overflow:hidden; aspect-ratio:3/4; display:block; }

.sp-photo { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; transition:transform .6s cubic-bezier(.25,.46,.45,.94); }
.sp-card:hover .sp-photo { transform:scale(1.06); }

/* Placeholder when no image */
.sp-photo-placeholder {
  width:100%; height:100%; min-height:350px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Bebas Neue',sans-serif; font-size:4rem; font-weight:700;
  background:var(--card);
  transition:transform .6s cubic-bezier(.25,.46,.45,.94);
}
.sp-photo-placeholder.av-violet { background:linear-gradient(135deg,#9B5DE5,#FF4D6D); }
.sp-photo-placeholder.av-gold   { background:linear-gradient(135deg,#FF8C00,#FFD700); }
.sp-photo-placeholder.av-cyan   { background:linear-gradient(135deg,#00F5FF,#06D6A0); }
.sp-photo-placeholder.av-coral  { background:linear-gradient(135deg,#FF4D6D,#FF8C00); }
.sp-photo-placeholder.av-green  { background:linear-gradient(135deg,#06D6A0,#9B5DE5); }
.sp-photo-placeholder.av-blue   { background:linear-gradient(135deg,#00F5FF,#9B5DE5); }
.sp-card:hover .sp-photo-placeholder { transform:scale(1.04); }

/* Hover overlay */
.sp-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,0) 100%);
  display:flex; align-items:flex-end;
  opacity:0; transition:opacity .35s ease;
}
.sp-card:hover .sp-card-overlay { opacity:1; }

.sp-card-overlay-inner { padding:1.5rem; width:100%; }
.sp-card-role    { font-family:'Space Mono',monospace; font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:.3rem; }
.sp-card-name    { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; line-height:1.1; color:#fff; margin-bottom:.3rem; }
.sp-card-tagline { font-size:.82rem; color:rgba(255,255,255,.7); margin-bottom:.7rem; font-style:italic; }
.sp-card-cta     { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--cyan); display:flex; align-items:center; gap:.4rem; }
.sp-card-cta span { transition:transform .2s; }
.sp-card:hover .sp-card-cta span { transform:translateX(4px); }

/* Card footer (always visible) */
.sp-card-foot { padding:.9rem 1rem; background:var(--surface); border-top:1px solid var(--border); }
.sp-card-foot-name { font-weight:600; font-size:.92rem; }
.sp-card-foot-role { font-size:.75rem; color:var(--muted); margin-top:.15rem; font-family:'Space Mono',monospace; letter-spacing:.04em; }

/* Hidden filtered cards */
.sp-card.sp-hidden { display:none; }

/* ═══════════════════════════════════════════
   SINGLE SPEAKER PAGE
═══════════════════════════════════════════ */
.ssp-hero { position:relative; min-height:70vh; display:flex; align-items:flex-end; overflow:hidden; }
.ssp-hero-bg { position:absolute; inset:0; }
.ssp-hero-img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.ssp-hero-gradient { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,10,15,1) 0%, rgba(10,10,15,.6) 50%, rgba(10,10,15,.2) 100%); }
.ssp-hero-content { position:relative; z-index:1; padding:2rem 1.5rem 3rem; }

.ssp-back { display:inline-flex; align-items:center; gap:.4rem; color:var(--muted); font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.5rem; transition:color .2s; }
.ssp-back:hover { color:var(--gold); }

.ssp-role { font-family:'Space Mono',monospace; font-size:.75rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:.5rem; }
.ssp-name { font-family:'Bebas Neue',sans-serif; font-size:clamp(3rem,8vw,6rem); line-height:1; color:#fff; margin-bottom:.5rem; }
.ssp-tagline { font-size:1.05rem; color:rgba(255,255,255,.65); font-style:italic; max-width:600px; margin-bottom:1.5rem; }

.ssp-socials { display:flex; gap:.6rem; flex-wrap:wrap; }
.ssp-social-btn {
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.45rem 1rem; border-radius:999px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  color:#fff; font-size:.8rem; font-weight:600; transition:all .2s;
}
.ssp-social-btn:hover { background:rgba(255,215,0,.15); border-color:var(--gold); color:var(--gold); }

/* Bio layout */
.ssp-body { padding:4rem 1.5rem; }
.ssp-bio-grid { display:grid; grid-template-columns:1fr 340px; gap:4rem; align-items:start; }
.ssp-section-title { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:.05em; color:var(--gold); margin-bottom:1.2rem; }
.ssp-bio-text { color:var(--muted); line-height:1.9; font-size:.97rem; }
.ssp-bio-text p { margin-bottom:1rem; }

.ssp-show-card { background:var(--card); border:1px solid rgba(255,215,0,.2); border-radius:16px; padding:1.5rem; margin-top:2rem; }
.ssp-show-label { font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--cyan); margin-bottom:.4rem; font-family:'Space Mono',monospace; }
.ssp-show-name  { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; color:var(--gold); }
.ssp-show-time  { font-family:'Space Mono',monospace; font-size:.82rem; color:var(--muted); margin-top:.3rem; }

.ssp-sidebar-photo { border-radius:20px; overflow:hidden; margin-bottom:1.5rem; box-shadow:0 20px 60px rgba(0,0,0,.4); }
.ssp-sidebar-img { width:100%; display:block; }
.ssp-sidebar-card { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:1.5rem; }
.ssp-sidebar-name { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; color:var(--text); }
.ssp-sidebar-role { color:var(--muted); font-size:.85rem; margin-top:.3rem; font-family:'Space Mono',monospace; }

.ssp-others-section { padding:3rem 0 5rem; background:var(--surface); border-top:1px solid var(--border); margin-top:2rem; }

/* ═══════════════════════════════════════════
   NEWS — Blog Archive
═══════════════════════════════════════════ */
.news-hero { align-items:flex-end; }
.news-hero-content { padding-bottom:1rem; }

/* Category pills */
.news-cat-bar { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.news-cat-pill {
  padding:.4rem 1rem; border-radius:999px;
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  font-size:.8rem; font-weight:600; color:var(--muted); transition:all .2s;
}
.news-cat-pill.active, .news-cat-pill:hover { background:rgba(255,215,0,.12); border-color:var(--gold); color:var(--gold); }

/* Category tag (inside card) */
.news-cat-tag {
  display:inline-block; padding:.2rem .7rem; border-radius:999px;
  background:rgba(155,93,229,.2); border:1px solid rgba(155,93,229,.4);
  font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--violet);
  margin-right:.4rem; margin-bottom:.5rem; transition:all .2s;
}
.news-cat-tag:hover { background:rgba(155,93,229,.4); color:#fff; }
.news-cats { margin-bottom:.5rem; }

/* Featured post */
.news-featured {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem;
  background:var(--card); border:1px solid var(--border);
  border-radius:24px; overflow:hidden; margin-bottom:3rem;
  transition:border-color .25s;
}
.news-featured:hover { border-color:rgba(255,215,0,.25); }
.news-featured-img-wrap { position:relative; overflow:hidden; min-height:320px; display:block; }
.news-featured-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.news-featured:hover .news-featured-img { transform:scale(1.04); }
.news-featured-badge {
  position:absolute; top:1.2rem; left:1.2rem;
  background:linear-gradient(135deg,var(--gold),var(--amber));
  color:#000; font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:.3rem .8rem; border-radius:999px;
}
.news-featured-body { padding:2.5rem; display:flex; flex-direction:column; justify-content:center; }
.news-featured-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(1.6rem,3vw,2.4rem); line-height:1.15; margin-bottom:.8rem; }
.news-featured-title a { color:var(--text); transition:color .2s; }
.news-featured-title a:hover { color:var(--gold); }
.news-meta { display:flex; gap:1rem; flex-wrap:wrap; color:var(--muted); font-size:.78rem; font-family:'Space Mono',monospace; margin-bottom:1rem; }
.news-excerpt { color:var(--muted); font-size:.92rem; line-height:1.7; margin-bottom:1.2rem; }
.news-read-more { color:var(--cyan); font-weight:700; font-size:.85rem; letter-spacing:.06em; transition:color .2s; }
.news-read-more:hover { color:var(--gold); }

/* Posts grid */
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:3rem; }

.news-card { background:var(--card); border:1px solid var(--border); border-radius:20px; overflow:hidden; transition:transform .25s, border-color .25s; }
.news-card:hover { transform:translateY(-5px); border-color:rgba(155,93,229,.3); }
.news-card-img-wrap { display:block; position:relative; overflow:hidden; aspect-ratio:16/9; }
.news-card-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.news-card:hover .news-card-img { transform:scale(1.05); }
.news-card-img-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.3), transparent); }
.news-img-placeholder { width:100%;min-height:180px; background:linear-gradient(135deg,var(--violet),var(--coral)); display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:rgba(255,255,255,.5); }
.news-img-placeholder-lg { min-height:320px; font-size:2.5rem; }
.news-card-body { padding:1.3rem; }
.news-card-title { font-family:'Bebas Neue',sans-serif; font-size:1.35rem; line-height:1.2; margin-bottom:.5rem; }
.news-card-title a { color:var(--text); transition:color .2s; }
.news-card-title a:hover { color:var(--gold); }

/* Pagination */
.news-pagination { display:flex; justify-content:center; }
.news-pagination .nav-links { display:flex; gap:.5rem; flex-wrap:wrap; }
.news-pagination .page-numbers {
  padding:.5rem 1rem; border-radius:10px;
  background:var(--card); border:1px solid var(--border);
  color:var(--muted); font-size:.88rem; transition:all .2s;
}
.news-pagination .page-numbers.current { background:rgba(255,215,0,.12); border-color:var(--gold); color:var(--gold); }
.news-pagination .page-numbers:hover { border-color:var(--gold); color:var(--gold); }

/* ═══════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════ */
.post-hero { position:relative; min-height:55vh; display:flex; align-items:flex-end; overflow:hidden; }
.post-hero-bg { position:absolute; inset:0; }
.post-hero-img { width:100%; height:100%; object-fit:cover; }
.post-hero-gradient { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,15,1) 0%,rgba(10,10,15,.55) 55%,rgba(10,10,15,.1) 100%); }
.post-hero-content { position:relative; z-index:1; padding:2rem 1.5rem 3rem; }
.post-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2rem,5vw,4rem); line-height:1.1; color:#fff; max-width:800px; margin-bottom:.8rem; }
.post-meta { display:flex; gap:1rem; flex-wrap:wrap; color:rgba(255,255,255,.55); font-size:.8rem; font-family:'Space Mono',monospace; }

.post-layout { display:grid; grid-template-columns:1fr 300px; gap:4rem; padding:3rem 0 5rem; align-items:start; }
.post-body { color:rgba(240,238,232,.85); line-height:1.9; font-size:1rem; }
.post-body p  { margin-bottom:1.3rem; }
.post-body h2 { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:var(--gold); margin:2rem 0 .8rem; }
.post-body h3 { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; margin:1.5rem 0 .6rem; }
.post-body a  { color:var(--cyan); border-bottom:1px solid rgba(0,245,255,.3); }
.post-body blockquote { border-left:3px solid var(--gold); padding-left:1.5rem; color:var(--muted); font-style:italic; margin:1.5rem 0; }
.post-body img { border-radius:12px; margin:1rem 0; }
.post-body ul, .post-body ol { padding-left:1.5rem; margin-bottom:1.2rem; }
.post-body li { margin-bottom:.5rem; color:var(--muted); }

.post-tags { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:2rem; }
.post-tag { padding:.3rem .8rem; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid var(--border); color:var(--muted); font-size:.78rem; transition:all .2s; }
.post-tag:hover { color:var(--cyan); border-color:var(--cyan); }

.post-share { display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid var(--border); }
.post-share-label { font-size:.78rem; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-family:'Space Mono',monospace; margin-right:.3rem; }

.post-nav { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
.post-nav-btn { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:1.2rem; display:flex; flex-direction:column; gap:.3rem; transition:all .25s; }
.post-nav-btn:hover { border-color:var(--gold); }
.post-nav-btn-right { text-align:right; }
.post-nav-dir  { font-size:.72rem; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; font-family:'Space Mono',monospace; }
.post-nav-title { font-size:.9rem; font-weight:600; color:var(--text); line-height:1.3; }

/* Sidebar */
.post-sidebar { position:sticky; top:100px; }
.post-sidebar-card { background:var(--card); border:1px solid var(--border); border-radius:18px; padding:1.5rem; margin-bottom:1.5rem; }
.post-sidebar-title { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; color:var(--gold); margin-bottom:1.2rem; }
.post-related-item { display:flex; gap:.8rem; align-items:flex-start; margin-bottom:1rem; padding-bottom:1rem; border-bottom:1px solid var(--border); color:var(--text); transition:color .2s; }
.post-related-item:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.post-related-item:hover { color:var(--gold); }
.post-related-thumb { width:56px; height:56px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.post-related-thumb-placeholder { width:56px;height:56px;border-radius:8px;background:var(--violet);display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;flex-shrink:0; }
.post-related-title { font-size:.85rem; font-weight:600; line-height:1.3; margin-bottom:.2rem; }
.post-related-date  { font-size:.72rem; color:var(--muted); font-family:'Space Mono',monospace; }

/* ═══════════════════════════════════════════
   SHORTCODE: [hz432_speakers] & [hz432_news]
═══════════════════════════════════════════ */
.hz432-sc-speakers-wrap .sp-grid { max-width:1140px; margin:0 auto; padding:0 1.5rem; gap:1rem; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); }
.hz432-sc-news-wrap .news-grid { grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Speakers & News
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sp-grid { grid-template-columns:repeat(3,1fr); }
  .sp-grid-small { grid-template-columns:repeat(3,1fr); }
  .ssp-bio-grid { grid-template-columns:1fr; }
  .ssp-sidebar { display:none; }
  .post-layout { grid-template-columns:1fr; }
  .post-sidebar { position:static; }
}
@media (max-width: 768px) {
  .sp-grid { grid-template-columns:repeat(2,1fr); }
  .sp-grid-small { grid-template-columns:repeat(2,1fr); }
  .news-featured { grid-template-columns:1fr; }
  .news-featured-img-wrap { min-height:220px; }
  .news-grid { grid-template-columns:1fr; }
  .post-nav { grid-template-columns:1fr; }
}
@media (max-width: 480px) {
  .sp-grid { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════ */
#page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; position: relative; overflow: hidden; }
.err404-wrap { position: relative; width: 100%; }
.err404-orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: float 9s ease-in-out infinite; pointer-events: none; }
.err404-orb-1 { width: 450px; height: 450px; background: rgba(155,93,229,.2); top: -200px; left: -100px; }
.err404-orb-2 { width: 350px; height: 350px; background: rgba(255,77,109,.15); bottom: -100px; right: -50px; animation-delay: -4s; }
.err404-orb-3 { width: 300px; height: 300px; background: rgba(0,245,255,.12); top: 30%; left: 40%; animation-delay: -7s; }
.err404-content { text-align: center; position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.err404-freq { font-family: 'Bebas Neue', sans-serif; font-size: clamp(7rem, 22vw, 14rem); line-height: 1; background: linear-gradient(135deg,var(--gold),var(--amber),var(--coral),var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s ease-in-out infinite; }
.err404-hz { font-family: 'Space Mono', monospace; font-size: clamp(.8rem, 2vw, 1.2rem); letter-spacing: .4em; color: var(--cyan); text-transform: uppercase; margin-top: -.5rem; }
.err404-wave { width: 100%; max-width: 500px; margin: 1.5rem auto; display: block; }
.err404-msg { color: var(--muted); font-size: .97rem; line-height: 1.8; max-width: 480px; margin: 0 auto 2rem; }
.err404-links { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 3rem; }
.err404-suggestions { margin-top: 2rem; }
.err404-sugg-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--muted); margin-bottom: 1.2rem; letter-spacing: .05em; }

/* Search form (global) */
.hz432-search-bar { margin-bottom: 2.5rem; }
.hz432-search-bar .search-form { display: flex; gap: .6rem; }
.hz432-search-bar .search-field { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 12px; color: var(--text); padding: .8rem 1.2rem; font-size: .95rem; outline: none; font-family: inherit; transition: border-color .2s; }
.hz432-search-bar .search-field:focus { border-color: var(--gold); }
.hz432-search-bar .search-submit { background: linear-gradient(135deg,var(--gold),var(--amber)); border: none; border-radius: 12px; color: #000; font-weight: 700; padding: .8rem 1.5rem; cursor: pointer; font-size: .9rem; white-space: nowrap; transition: filter .2s; }
.hz432-search-bar .search-submit:hover { filter: brightness(1.1); }

/* 404 inline search */
.err404-content .search-form { display: flex; gap: .6rem; max-width: 460px; margin: 0 auto 1.5rem; }
.err404-content .search-field { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 12px; color: var(--text); padding: .75rem 1.1rem; font-size: .92rem; outline: none; font-family: inherit; transition: border-color .2s; }
.err404-content .search-field:focus { border-color: var(--gold); }
.err404-content .search-submit { background: linear-gradient(135deg,var(--gold),var(--amber)); border: none; border-radius: 12px; color: #000; font-weight: 700; padding: .75rem 1.3rem; cursor: pointer; transition: filter .2s; }
.err404-content .search-submit:hover { filter: brightness(1.1); }

/* Search result type badge */
.search-result-type { position: absolute; top: .8rem; right: .8rem; background: rgba(0,0,0,.7); color: var(--cyan); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 999px; }

/* Empty state */
.hz432-empty-state { text-align: center; padding: 5rem 1rem; color: var(--muted); }
.hz432-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.hz432-empty-state h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--text); margin-bottom: .6rem; }
.hz432-empty-links { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ═══════════════════════════════════════════
   COMMENTS
═══════════════════════════════════════════ */
.hz432-comments { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.comments-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: .04em; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.3rem; margin-bottom: 1rem; }
.comment-list .comment-meta { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; font-size: .82rem; color: var(--muted); }
.comment-list .comment-author .fn { font-weight: 700; color: var(--text); font-size: .95rem; }
.comment-list .comment-content p { color: var(--muted); line-height: 1.7; font-size: .92rem; }
.comment-list .reply a { font-size: .78rem; color: var(--cyan); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.comment-list .children { padding-left: 1.5rem; margin-top: .8rem; border-left: 2px solid var(--border); }
.no-comments { color: var(--muted); font-style: italic; }

/* Comment form */
.comment-respond { margin-top: 2rem; }
.comment-respond h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem; }
.hz432-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hz432-form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.hz432-form-field label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.hz432-form-field label span { color: var(--coral); }
.hz432-form-field input,
.hz432-form-field textarea { background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); padding: .75rem 1rem; font-size: .92rem; font-family: inherit; outline: none; transition: border-color .2s; resize: vertical; }
.hz432-form-field input:focus,
.hz432-form-field textarea:focus { border-color: var(--gold); }
.hz432-submit { margin-top: .5rem; }

/* ═══════════════════════════════════════════
   MOBILE — COMPLETE OVERHAUL
   Breakpoints: 1024, 768, 480, 360
═══════════════════════════════════════════ */

/* ─── 1024px ─── */
@media (max-width: 1024px) {
  /* Nav */
  #masthead { padding: .8rem 1.5rem; }
  #primary-navigation .menu { gap: 1.2rem; }
  #primary-navigation .menu li a { font-size: .78rem; }

  /* Hero */
  .hero-freq { font-size: clamp(5rem,15vw,10rem); }

  /* Player */
  .player-card { padding: 1.8rem; }

  /* About */
  .about-inner { gap: 3rem; }
  .freq-circle { width: 260px; height: 260px; }
  .freq-inner  { width: 210px; height: 210px; }
  .freq-inner-num { font-size: 4rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }

  /* Speakers */
  .sp-grid { grid-template-columns: repeat(3,1fr); }
  .sp-card-name { font-size: 1.5rem; }

  /* Single speaker */
  .ssp-bio-grid { grid-template-columns: 1fr; }
  .ssp-sidebar  { display: none; }

  /* News */
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img-wrap { min-height: 260px; }
  .news-grid { grid-template-columns: repeat(2,1fr); }

  /* Post */
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
}

/* ─── 768px ─── */
@media (max-width: 768px) {
  :root { --hz-mobile-nav-offset: 58px; }

  /* Base spacing */
  .section, section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }

  /* Nav */
  #masthead { padding: .75rem 1rem; }
  #primary-navigation .menu { display: none; }
  #primary-navigation .menu.is-open {
    display: flex; flex-direction: column;
    position: fixed;
    top: calc(var(--hz-mobile-nav-offset) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100dvh - var(--hz-mobile-nav-offset) - env(safe-area-inset-top));
    max-height: calc(100dvh - var(--hz-mobile-nav-offset) - env(safe-area-inset-top));
    background: rgba(10,10,15,.98);
    padding: 2rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom)); gap: 1.5rem;
    overflow-y: auto; z-index: 999;
    border-top: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
  }
  #primary-navigation .menu.is-open li a { font-size: 1.4rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: .08em; color: var(--text); }
  #primary-navigation .menu.is-open li a:hover { color: var(--gold); }
  .menu-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; }
  .live-badge { padding: .25rem .6rem; font-size: .68rem; }
  .live-dot { width: 6px; height: 6px; }

  /* Hero */
  #hero { padding: 7rem 1rem 3rem; }
  .hero-freq { font-size: clamp(5rem,22vw,8rem); }
  .hero-hz { font-size: clamp(.75rem,3vw,1rem); letter-spacing: .2em; }
  .hero-tagline { font-size: .9rem; }

  /* Player */
  #player-section { padding: 2rem 1rem 3rem; }
  .player-card { padding: 1.4rem; border-radius: 18px; }
  .player-now-playing { gap: .8rem; margin-bottom: 1.4rem; }
  .album-art { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 10px; }
  .now-playing-title { font-size: 1rem; }
  .now-playing-artist { font-size: .78rem; }
  .visualizer { gap: 2px; height: 32px; }
  .bar { width: 3px; }
  .player-controls { gap: 1rem; margin: 1.3rem 0 1.1rem; }
  .btn-play { width: 56px; height: 56px; font-size: 1.3rem; }
  .btn-secondary { width: 38px; height: 38px; font-size: .9rem; }

  /* Schedule */
  #palinsesto .container { padding: 0 1rem; }
  .schedule-grid { grid-template-columns: 1fr; gap: .8rem; }
  .day-tabs { gap: .4rem; padding: 0 1rem 1rem; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .day-tab { flex-shrink: 0; padding: .4rem .9rem; font-size: .75rem; }

  /* About */
  #chi-siamo .section { padding: 3rem 0; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .freq-circle { width: 200px; height: 200px; }
  .freq-inner  { width: 162px; height: 162px; }
  .freq-inner-num { font-size: 3rem; }
  .freq-inner-hz  { font-size: .65rem; }
  .about-text h2  { font-size: 2rem; }
  .about-stats    { justify-content: center; gap: 1.5rem; }

  /* Listeners */
  .listeners-grid { grid-template-columns: 1fr; gap: 1rem; }
  .community-banner { flex-direction: column; text-align: center; }
  .community-banner .btn-primary { width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* Speakers hero */
  .sp-hero, .news-hero { padding: 6rem 1rem 2rem; min-height: auto; }
  .sp-title { font-size: clamp(2.8rem,10vw,5rem); }
  .sp-filter-bar { padding: .8rem 1rem; gap: .4rem; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .sp-filter-btn { flex-shrink: 0; }

  /* Speakers grid */
  .sp-grid { grid-template-columns: repeat(2,1fr); gap: 1px; }
  .sp-grid-small { grid-template-columns: repeat(2,1fr); padding: 0 1rem 3rem; gap: .8rem; }
  .sp-card-overlay { opacity: 1; } /* always visible on mobile */
  .sp-card-overlay-inner { padding: 1rem; }
  .sp-card-name { font-size: 1.3rem; }
  .sp-card-tagline { display: none; }
  .sp-card-foot { padding: .7rem .8rem; }
  .sp-card-foot-name { font-size: .82rem; }
  .sp-card-foot-role { font-size: .68rem; }

  /* Single speaker */
  .ssp-hero { min-height: 50vh; }
  .ssp-hero-content { padding: 1.2rem 1rem 2rem; }
  .ssp-name { font-size: clamp(2rem,8vw,3.5rem); }
  .ssp-body { padding: 2rem 1rem; }
  .ssp-others-section { padding: 2rem 0 3rem; }

  /* News featured */
  .news-featured { grid-template-columns: 1fr; border-radius: 16px; margin-bottom: 2rem; }
  .news-featured-img-wrap { min-height: 200px; }
  .news-featured-body { padding: 1.5rem; }
  .news-featured-title { font-size: 1.4rem; }
  .news-cat-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; }
  .news-cat-pill { flex-shrink: 0; }
  .news-grid { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
  .news-card { border-radius: 14px; }

  /* Single post */
  .post-hero { min-height: 40vh; }
  .post-hero-content { padding: 1.2rem 1rem 2rem; }
  .post-title { font-size: clamp(1.6rem,5vw,2.5rem); }
  .post-layout { padding: 2rem 0 3rem; }
  .post-nav { grid-template-columns: 1fr; }
  .post-share { gap: .4rem; }
  .post-tags { gap: .4rem; }

  /* Comments */
  .hz432-form-row { grid-template-columns: 1fr; }
  .comment-list .children { padding-left: .8rem; }

  /* 404 */
  .err404-links { flex-direction: column; align-items: center; }
  .err404-links .btn-primary { width: 100%; max-width: 280px; text-align: center; }
}

/* Evita il bug di viewport ridotta su mobile quando il menu e' aperto
   (position: fixed dentro un antenato trasformato). */
@media (max-width: 768px) {
  body.menu-open #masthead {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* ─── 480px ─── */
@media (max-width: 480px) {
  /* Nav */
  .site-branding .site-title { font-size: 1.5rem; }

  /* Hero */
  .hero-freq { font-size: 20vw; }
  .hero-hz { letter-spacing: .15em; }
  .hero-wave { display: none; } /* hide wave on very small screens */

  /* Player */
  .player-card { padding: 1.1rem; }
  .player-now-playing { flex-wrap: wrap; }
  .visualizer { display: none; } /* hide on small */
  .player-controls { gap: .7rem; }
  .btn-play { width: 50px; height: 50px; font-size: 1.2rem; }
  .stream-url-bar { font-size: .65rem; }

  /* Schedule */
  .schedule-card { padding: 1.1rem; }
  .schedule-show { font-size: 1rem; }

  /* Speakers */
  .sp-grid { grid-template-columns: 1fr; gap: 1px; }
  .sp-grid-small { grid-template-columns: repeat(2,1fr); }
  .sp-photo-placeholder { min-height: 260px; }

  /* Footer */
  #colophon { padding: 2rem 1rem; }

  /* About stats */
  .about-stats { flex-direction: column; align-items: center; gap: 1rem; }
  .stat-num { font-size: 2.2rem; }

  /* News */
  .news-featured-body { padding: 1.1rem; }

  /* 404 */
  .err404-freq { font-size: 35vw; }
}

/* ─── 360px (smallest phones) ─── */
@media (max-width: 360px) {
  .hero-freq { font-size: 22vw; }
  .btn-play { width: 46px; height: 46px; }
  .sp-grid-small { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   TOUCH IMPROVEMENTS
═══════════════════════════════════════════ */
@media (hover: none) {
  /* Show overlay by default on touch devices */
  .sp-card-overlay { opacity: 1; }
  .news-card:hover { transform: none; }
  .schedule-card:hover { transform: none; }
  .listener-card:hover { transform: none; }

  /* Bigger tap targets */
  .nav-links a { padding: .5rem 0; }
  .day-tab { padding: .6rem 1rem; min-height: 44px; }
  .sp-filter-btn { min-height: 44px; }
  .news-cat-pill { min-height: 44px; display: flex; align-items: center; }
}

/* ═══════════════════════════════════════════
   PRINT
═══════════════════════════════════════════ */
@media print {
  #masthead, .player-card, .community-banner, .post-sidebar, .post-share, .post-nav { display: none !important; }
  body { background: #fff; color: #000; }
  .post-body { color: #333; }
  a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════
   ASCOLTATORI — Form registrazione
═══════════════════════════════════════════ */
.hz432-reg-wrap {
  max-width: 720px; margin: 3rem auto; padding: 0 1rem;
}
.hz432-reg-header { text-align: center; margin-bottom: 2.5rem; }
.hz432-reg-icon { font-size: 3rem; margin-bottom: .8rem; }
.hz432-reg-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: .05em; margin-bottom: .5rem; background: linear-gradient(90deg, var(--gold), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hz432-reg-header p { color: var(--muted); font-size: .95rem; }

/* Honeypot */
.hz432-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

/* Message */
.hz432-reg-msg { padding: 1rem 1.3rem; border-radius: 12px; font-weight: 600; margin-bottom: 1.5rem; }
.hz432-reg-msg-success { background: rgba(6,214,160,.12); border: 1px solid var(--green); color: var(--green); }
.hz432-reg-msg-error   { background: rgba(255,77,109,.12); border: 1px solid var(--coral); color: var(--coral); }

/* Sections */
.hz432-reg-section { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.2rem; }
.hz432-reg-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .06em; color: var(--gold); margin-bottom: 1.2rem; }

/* Fields */
.hz432-reg-field { margin-bottom: 1.1rem; }
.hz432-reg-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.req { color: var(--coral); }
.hz432-reg-field input[type=text],
.hz432-reg-field input[type=email],
.hz432-reg-field input[type=url],
.hz432-reg-field textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); padding: .75rem 1rem;
  font-size: .92rem; font-family: inherit; outline: none; transition: border-color .2s;
  resize: vertical;
}
.hz432-reg-field input:focus,
.hz432-reg-field textarea:focus { border-color: var(--gold); }
.hz432-reg-field input:invalid:not(:placeholder-shown),
.hz432-reg-field textarea:invalid:not(:placeholder-shown) { border-color: var(--coral); }
.hz432-reg-hint { font-size: .72rem; color: var(--muted); margin-top: .3rem; display: block; }
.hz432-reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hz432-reg-mode-wrap {
  margin-bottom: 1rem;
  padding: .9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}

.hz432-reg-mode-head {
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .55rem;
}

.hz432-reg-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.hz432-reg-mode-option,
.hz432-reg-quick-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 40px;
  padding: .4rem .75rem;
  font-size: .8rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  background: rgba(255,255,255,.03);
}

.hz432-reg-mode-option input,
.hz432-reg-quick-option input {
  display: none;
}

.hz432-reg-mode-option.is-active,
.hz432-reg-quick-option.is-active {
  color: var(--gold);
  border-color: rgba(255,215,0,.45);
  background: rgba(255,215,0,.12);
}

.hz432-reg-quick-modes {
  margin-top: .55rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.hz432-reg-mode-hint {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .74rem;
}

/* File drop */
.hz432-file-drop {
  border: 2px dashed rgba(255,215,0,.3); border-radius: 14px; cursor: pointer;
  transition: border-color .2s, background .2s; min-height: 120px;
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.hz432-file-drop:hover, .hz432-file-drop.drag-over { border-color: var(--gold); background: rgba(255,215,0,.05); }
.hz432-file-drop-inner { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1.5rem; text-align: center; }
.hz432-file-icon { font-size: 2rem; }
.hz432-file-text { font-size: .9rem; color: var(--muted); }
.hz432-file-text span { color: var(--cyan); text-decoration: underline; }
.hz432-file-sub { font-size: .72rem; color: var(--muted); }
.hz432-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.hz432-file-preview { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--card); }
.hz432-file-preview img { max-height: 160px; max-width: 100%; object-fit: contain; border-radius: 8px; }
.hz432-file-preview button { position: absolute; top: .5rem; right: .5rem; background: rgba(255,77,109,.8); border: none; color: #fff; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: .9rem; }

/* Genre + Mood chips */
.hz432-genre-chips, .hz432-mood-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.hz432-chip {
  padding: .3rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--muted); font-size: .75rem; font-weight: 600; cursor: pointer; transition: all .15s;
}
.hz432-chip:hover { border-color: var(--gold); color: var(--gold); }
.hz432-chip.active { background: rgba(255,215,0,.15); border-color: var(--gold); color: var(--gold); }

/* Privacy */
.hz432-reg-privacy { margin-bottom: 1.5rem; }
.hz432-checkbox-label { display: flex; gap: .8rem; align-items: flex-start; cursor: pointer; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.hz432-checkbox-label input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--gold); }
.hz432-checkbox-label a { color: var(--cyan); }

/* Submit */
.hz432-reg-submit {
  width: 100%; padding: 1rem; border: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #000; font-size: 1rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; transition: filter .2s, transform .2s;
  box-shadow: 0 4px 30px rgba(255,215,0,.3);
}
.hz432-reg-submit:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-2px); }
.hz432-reg-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════
   ASCOLTATORI — Griglia profili
═══════════════════════════════════════════ */
.hz432-asc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1140px; margin: 0 auto; padding: 0 1rem;
}

.hz432-asc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.hz432-asc-card:hover { transform: translateY(-5px); border-color: rgba(155,93,229,.35); box-shadow: 0 12px 40px rgba(0,0,0,.3); }

.hz432-asc-header { display: flex; gap: 1rem; align-items: flex-start; }
.hz432-asc-avatar-wrap { flex-shrink: 0; }
.hz432-asc-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; }
.hz432-asc-initials { display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; }

.hz432-asc-nick { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .04em; line-height: 1.1; }
.hz432-asc-altnick { font-size: .75rem; color: var(--muted); font-style: italic; margin-top: .15rem; }
.hz432-asc-chatta { font-size: .78rem; color: var(--cyan); margin-top: .3rem; font-family: 'Space Mono', monospace; }
.hz432-asc-online { font-size: .75rem; color: var(--green); margin-top: .15rem; }

.hz432-asc-links { display: flex; gap: .5rem; }
.hz432-asc-link-btn {
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  transition: all .2s;
}
.hz432-asc-link-btn:hover { background: rgba(255,215,0,.12); border-color: var(--gold); transform: scale(1.1); }

.hz432-asc-divider { height: 1px; background: var(--border); }

.hz432-asc-block { }
.hz432-asc-block-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: .06em; color: var(--gold); margin-bottom: .4rem; }
.hz432-asc-block-text { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.hz432-asc-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.hz432-asc-tag { padding: .2rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hz432-asc-tags .hz432-asc-tag { background: rgba(155,93,229,.15); color: var(--violet); border: 1px solid rgba(155,93,229,.3); }
.hz432-asc-tags-mood .hz432-asc-tag { background: rgba(0,245,255,.1); color: var(--cyan); border: 1px solid rgba(0,245,255,.25); }

.hz432-asc-playlist-link { font-size: .85rem; font-weight: 600; color: var(--green); transition: color .2s; }
.hz432-asc-playlist-link:hover { color: var(--gold); }

.hz432-asc-citazione { font-style: italic; font-size: .85rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: .8rem; margin-top: .3rem; line-height: 1.6; }

.hz432-asc-card-foot {
  margin-top: auto;
  padding-top: .55rem;
}

.hz432-asc-grid-preview {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.hz432-asc-card-preview .hz432-asc-nick-link {
  color: var(--text);
  text-decoration: none;
}

.hz432-asc-card-preview .hz432-asc-nick-link:hover .hz432-asc-nick {
  color: var(--gold);
}

.hz432-asc-tags-preview {
  margin-top: .6rem;
}

.hz432-asc-citazione-preview {
  margin-top: .8rem;
}

.hz432-asc-filters {
  max-width: 1140px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  position: sticky;
  top: 72px;
  z-index: 20;
}

.hz432-asc-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,.88);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: .55rem .65rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hz432-asc-filter-order,
.hz432-asc-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}

.hz432-asc-filter-group {
  margin-top: .55rem;
  padding: .45rem .55rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}

.hz432-asc-filter-label {
  font-size: .78rem;
  color: var(--muted);
  margin-right: .2rem;
}

.hz432-asc-filter-chip--reset {
  margin-left: auto;
}

.hz432-asc-empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.hz432-asc-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .36rem .74rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--text);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .2s;
}
.hz432-asc-filter-chip:hover {
  border-color: rgba(255,215,0,.45);
  color: var(--gold);
}
.hz432-asc-filter-chip.is-active {
  background: rgba(255,215,0,.16);
  border-color: rgba(255,215,0,.5);
  color: var(--gold);
}

.hz432-asc-filter-order .hz432-asc-filter-chip {
  min-width: 80px;
}

.hz432-asc-filter-chip--reset {
  border-color: rgba(255,77,109,.35);
  color: #ff9bab;
}

.hz432-asc-filter-chip--reset:hover {
  border-color: rgba(255,77,109,.55);
  color: #ffc4cf;
}

.hz432-asc-open {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
}
.hz432-asc-open:hover { color: var(--gold); }

/* ── Mobile form ── */
@media (max-width: 600px) {
  .hz432-reg-row { grid-template-columns: 1fr; }
  .hz432-reg-section { padding: 1.2rem; border-radius: 14px; }
  .hz432-asc-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hz432-asc-card { padding: 1rem; gap: .55rem; }
  .hz432-asc-header { gap: .8rem; }
  .hz432-asc-avatar { width: 56px; height: 56px; font-size: 1.5rem; }
  .hz432-asc-block-title { font-size: .9rem; }
  .hz432-asc-block-text {
    font-size: .84rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hz432-asc-citazione { display: none; }
  .hz432-asc-tags .hz432-asc-tag:nth-child(n+3),
  .hz432-asc-tags-mood .hz432-asc-tag:nth-child(n+3) {
    display: none;
  }
  .hz432-asc-link-btn { width: 32px; height: 32px; font-size: 1rem; }

  .hz432-asc-filters {
    padding: 0;
    top: 60px;
  }

  .hz432-asc-filters-row {
    justify-content: flex-start;
    border-radius: 10px;
    padding: .45rem;
  }

  .hz432-asc-filter-chip--reset {
    margin-left: 0;
  }

  .hz432-reg-mode-switch,
  .hz432-reg-quick-modes {
    grid-template-columns: 1fr;
  }

  .hz432-asc-filter-group {
    margin-top: .4rem;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ═══════════════════════════════════════════
   SINGLE SPEAKER — stile evanDj
═══════════════════════════════════════════ */
.ssp-hero-bg-nophoto { background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2a 100%); }

.ssp-nick-line { color: rgba(255,255,255,.7); font-size: .95rem; margin-top: .3rem; }
.ssp-nick-line strong { color: var(--gold); }

.ssp-live-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,77,109,.15); border: 1px solid var(--coral);
  border-radius: 999px; padding: .35rem .9rem; margin-top: .7rem;
  font-size: .82rem; font-weight: 700; color: var(--coral);
  animation: pulse-badge 2s infinite;
}

.ssp-icon-links { display: flex; gap: .6rem; margin-top: 1.2rem; }
.ssp-icon-btn {
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  transition: all .2s; text-decoration: none;
}
.ssp-icon-btn:hover { background: rgba(255,215,0,.2); border-color: var(--gold); transform: scale(1.1); }

/* Content grid */
.ssp-body { padding: 3rem 0 5rem; }
.ssp-content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; }

/* Sections */
.ssp-main { }
.ssp-section { margin-bottom: 2rem; }
.ssp-section-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: .06em;
  color: var(--gold); margin-bottom: .6rem;
  padding-bottom: .4rem; border-bottom: 1px solid rgba(255,215,0,.2);
}
.ssp-section p { color: var(--muted); line-height: 1.8; font-size: .95rem; }

/* Citazione */
.ssp-citazione {
  font-style: italic; font-size: 1rem; color: rgba(255,255,255,.6);
  border-left: 3px solid var(--gold); padding: .8rem 1.2rem;
  margin: 1.5rem 0 2rem; line-height: 1.7;
  background: rgba(255,215,0,.04); border-radius: 0 8px 8px 0;
}

/* Audio player */
.ssp-audio-player { width: 100%; border-radius: 10px; }
.ssp-listen-link { color: var(--cyan); font-weight: 600; font-size: .92rem; transition: color .2s; }
.ssp-listen-link:hover { color: var(--gold); }

/* Top 5 */
.ssp-top5 { list-style: none; padding: 0; }
.ssp-top5 li {
  display: flex; align-items: baseline; gap: .8rem;
  padding: .65rem .8rem; border-radius: 10px;
  transition: background .2s;
}
.ssp-top5 li:hover { background: rgba(255,255,255,.04); }
.ssp-top5 li + li { border-top: 1px solid var(--border); }
.ssp-top5-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; line-height: 1;
  color: var(--gold); min-width: 24px; text-align: center; flex-shrink: 0;
}
.ssp-top5-song { color: var(--muted); font-size: .92rem; line-height: 1.4; }

/* Bio */
.ssp-bio-text { color: var(--muted); line-height: 1.9; font-size: .95rem; }
.ssp-bio-text p { margin-bottom: 1rem; }

/* Share */
.ssp-share { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* Sidebar */
.ssp-sidebar-col { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.2rem; }
.ssp-sidebar-photo-card { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.ssp-sidebar-photo { width: 100%; display: block; object-fit: cover; }

.ssp-info-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.3rem; }
.ssp-info-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--gold); margin-bottom: .8rem; letter-spacing: .04em; }
.ssp-info-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; }
.ssp-info-nick { font-size: .8rem; color: var(--muted); margin-top: .2rem; font-style: italic; }
.ssp-info-live { font-size: .82rem; color: var(--coral); font-weight: 600; margin-top: .5rem; }
.ssp-info-socials { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }

.ssp-other-item { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
.ssp-other-item:last-child { border-bottom: none; }
.ssp-other-item:hover { color: var(--gold); }
.ssp-other-thumb { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ssp-other-thumb-placeholder { background: var(--violet); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .ssp-content-grid { grid-template-columns: 1fr; }
  .ssp-sidebar-col { position: static; flex-direction: row; flex-wrap: wrap; }
  .ssp-sidebar-photo-card { display: none; }
  .ssp-info-card { flex: 1; min-width: 200px; }
}
@media (max-width: 600px) {
  .ssp-icon-btn { width: 42px; height: 42px; font-size: 1.2rem; }
  .ssp-sidebar-col { flex-direction: column; }
}

/* ═══════════════════════════════════════════
   PLAYER — On Air Info
═══════════════════════════════════════════ */
.player-on-air {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: 14px;
  transition: border-color .3s;
}
.player-on-air:hover { border-color: rgba(255,215,0,.3); }

.on-air-row {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .5rem;
}
.on-air-dot-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--coral);
  flex-shrink: 0;
}
.on-air-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  animation: blink 1s infinite;
  display: inline-block;
}
.on-air-show {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: .04em;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.on-air-host-row {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap;
}
.on-air-mic { font-size: .9rem; }
.on-air-host {
  font-size: .88rem; font-weight: 600;
  color: var(--gold);
}
.on-air-time {
  font-family: 'Space Mono', monospace;
  font-size: .72rem; color: var(--muted);
  margin-left: .3rem;
}

/* Animazione aggiornamento */
.on-air-refreshing .on-air-show,
.on-air-refreshing .on-air-host {
  opacity: .4; transition: opacity .3s;
}

@media (max-width: 480px) {
  .player-on-air { padding: .8rem; }
  .on-air-show { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════
   WORDPRESS CONTENT — entry-content + Gutenberg
   Copre post, pagine, editor a blocchi
═══════════════════════════════════════════ */

/* ── Contenitore base ── */
.entry-content,
.post-body,
.page-content {
  color: rgba(240,238,232,.85);
  font-size: 1rem;
  line-height: 1.9;
}

/* ── Tipografia ── */
.entry-content p,
.post-body p { margin-bottom: 1.3rem; }

.entry-content h1, .post-body h1 { font-family:'Bebas Neue',sans-serif; font-size:2.8rem; color:var(--gold); margin:2rem 0 .8rem; letter-spacing:.04em; }
.entry-content h2, .post-body h2 { font-family:'Bebas Neue',sans-serif; font-size:2.2rem; color:var(--gold); margin:2rem 0 .8rem; letter-spacing:.04em; }
.entry-content h3, .post-body h3 { font-family:'Bebas Neue',sans-serif; font-size:1.7rem; color:var(--text); margin:1.5rem 0 .6rem; }
.entry-content h4, .post-body h4 { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; color:var(--text); margin:1.2rem 0 .5rem; }

.entry-content a, .post-body a { color:var(--cyan); border-bottom:1px solid rgba(0,245,255,.3); transition:color .2s; }
.entry-content a:hover, .post-body a:hover { color:var(--gold); border-color:var(--gold); }

.entry-content strong, .post-body strong { color:var(--text); font-weight:700; }
.entry-content em, .post-body em { color:rgba(240,238,232,.7); }

/* ── Liste ── */
.entry-content ul, .post-body ul { padding-left:1.5rem; margin-bottom:1.2rem; }
.entry-content ol, .post-body ol { padding-left:1.5rem; margin-bottom:1.2rem; }
.entry-content li, .post-body li { margin-bottom:.5rem; color:var(--muted); }
.entry-content ul li::marker { color:var(--gold); }
.entry-content ol li::marker { color:var(--gold); font-weight:700; }

/* ── Blockquote ── */
.entry-content blockquote,
.post-body blockquote,
.wp-block-quote {
  border-left: 3px solid var(--gold);
  background: rgba(255,215,0,.04);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 10px 10px 0;
  color: rgba(240,238,232,.7);
  font-style: italic;
}
.entry-content blockquote p:last-child { margin-bottom:0; }
.wp-block-quote cite { color:var(--muted); font-size:.85rem; font-style:normal; margin-top:.5rem; display:block; }

/* ── Immagini ── */
.entry-content img,
.post-body img,
.wp-block-image img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.entry-content figure { margin: 1.5rem 0; }
.entry-content figcaption,
.wp-block-image figcaption {
  text-align:center; font-size:.78rem;
  color:var(--muted); margin-top:.4rem;
  font-style:italic;
}

/* ── Separatori ── */
.entry-content hr, .wp-block-separator {
  border:none; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:2rem 0; opacity:.4;
}

/* ── Codice ── */
.entry-content code, .post-body code {
  background:rgba(255,255,255,.08); color:var(--cyan);
  padding:.15rem .4rem; border-radius:5px;
  font-family:'Space Mono',monospace; font-size:.85em;
}
.entry-content pre, .wp-block-code {
  background:var(--card); border:1px solid var(--border);
  border-radius:12px; padding:1.2rem 1.5rem;
  overflow-x:auto; margin:1.5rem 0;
}
.entry-content pre code { background:none; padding:0; }

/* ── Tabelle ── */
.entry-content table, .wp-block-table table {
  width:100%; border-collapse:collapse; margin:1.5rem 0;
  font-size:.9rem;
}
.entry-content th, .wp-block-table th {
  background:rgba(255,215,0,.1); color:var(--gold);
  padding:.7rem 1rem; text-align:left; font-weight:700;
  border-bottom:2px solid rgba(255,215,0,.3);
}
.entry-content td, .wp-block-table td {
  padding:.65rem 1rem; color:var(--muted);
  border-bottom:1px solid var(--border);
}
.entry-content tr:last-child td { border-bottom:none; }
.entry-content tr:hover td { background:rgba(255,255,255,.03); }

/* ── Galleria ── */
.wp-block-gallery { margin:1.5rem 0; }
.wp-block-gallery img { border-radius:10px; }

/* ── Embed video ── */
.wp-block-embed, .entry-content iframe {
  border-radius:12px; overflow:hidden;
  margin:1.5rem 0; max-width:100%;
}

/* ── Colonne Gutenberg ── */
.wp-block-columns { margin:1.5rem 0; gap:1.5rem; }
.wp-block-column p { color:var(--muted); }

/* ── Cover block ── */
.wp-block-cover { border-radius:16px; overflow:hidden; margin:1.5rem 0; }

/* ── Bottoni Gutenberg ── */
.wp-block-button__link, .wp-element-button {
  background:linear-gradient(135deg,var(--gold),var(--amber)) !important;
  color:#000 !important; border:none !important;
  border-radius:999px !important; font-weight:700 !important;
  padding:.7rem 1.5rem !important; transition:filter .2s !important;
}
.wp-block-button__link:hover { filter:brightness(1.1) !important; }

/* ── Page layout migliorato ── */
#primary .entry-header { margin-bottom:2rem; }
#primary .entry-header h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2rem,5vw,3.5rem);
  background:linear-gradient(90deg,var(--gold),var(--coral));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; letter-spacing:.05em;
}

/* ── Post header su pagine interne ── */
.post-hero-minimal {
  padding: 7rem 1.5rem 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position:relative; overflow:hidden;
}
.post-hero-minimal::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 20% 50%, rgba(155,93,229,.12) 0%, transparent 70%);
  pointer-events:none;
}
.post-hero-minimal .container { position:relative; z-index:1; }
.post-hero-minimal .post-eyebrow {
  font-family:'Space Mono',monospace; font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:.6rem; display:block;
}
.post-hero-minimal h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2rem,5vw,3.5rem); line-height:1.1;
  margin-bottom:.7rem;
}
.post-hero-minimal .post-meta-bar {
  display:flex; gap:1rem; flex-wrap:wrap;
  color:var(--muted); font-size:.8rem;
  font-family:'Space Mono',monospace;
}

/* ── Contenuto articolo centrato ── */
.post-content-wrap {
  max-width:760px; margin:3rem auto; padding:0 1.5rem 5rem;
}

/* Mobile */
@media (max-width:768px) {
  .entry-content h2, .post-body h2 { font-size:1.7rem; }
  .entry-content h3, .post-body h3 { font-size:1.4rem; }
  .post-hero-minimal { padding:6rem 1rem 2rem; }
  .post-content-wrap { padding:0 1rem 3rem; }
}

/* ═══════════════════════════════════════════
   FOOTER NAV — con sottomenu hover
═══════════════════════════════════════════ */
.footer-nav { list-style: none; padding: 0; margin: 0; }

.footer-nav-item { position: relative; margin-bottom: .3rem; }

.footer-nav-link {
  display: flex; align-items: center; gap: .55rem;
  color: var(--muted); font-size: .88rem;
  padding: .3rem 0;
  transition: color .2s;
  text-decoration: none;
}
.footer-nav-link:hover { color: var(--gold); }

.footer-nav-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  opacity: 0; transition: opacity .2s;
}
.footer-nav-link:hover .footer-nav-dot { opacity: 1; }

.footer-nav-arrow {
  margin-left: auto;
  font-size: 1rem; color: var(--muted);
  transition: transform .2s, color .2s;
  line-height: 1;
}
.footer-has-sub:hover .footer-nav-arrow {
  transform: rotate(90deg);
  color: var(--gold);
}

/* Sottomenu */
.footer-submenu {
  list-style: none; padding: 0; margin: 0;
  position: absolute;
  bottom: 100%; left: 0;
  min-width: 200px;
  background: var(--card);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 14px;
  padding: .6rem 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
  /* apre verso l'alto nel footer */
}

.footer-has-sub:hover .footer-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-submenu li a {
  display: block;
  padding: .45rem 1rem;
  font-size: .84rem; color: var(--muted);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.footer-submenu li a:hover {
  color: var(--gold);
  background: rgba(255,215,0,.06);
}
.footer-submenu-more a {
  border-top: 1px solid var(--border);
  margin-top: .4rem; padding-top: .7rem !important;
  color: var(--cyan) !important;
  font-weight: 600;
}

/* Touch: apre/chiude col tap */
@media (hover: none) {
  .footer-submenu {
    position: static;
    opacity: 1; pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1.2rem;
  }
  .footer-submenu li a { padding: .3rem 0; font-size: .82rem; }
  .footer-nav-arrow { display: none; }
}

/* Colonna footer leggermente più larga per i sottomenu */
.footer-col-nav { position: relative; }

/* ═══════════════════════════════════════════
   HEADER — Dropdown menu
═══════════════════════════════════════════ */

/* Live dot nella voce "Ascolta la diretta" */
.nav-live-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--coral);
  margin-right: .3rem; vertical-align: middle;
  animation: blink 1s infinite;
}

/* Freccia dropdown */
.nav-arrow {
  display: inline-block; font-size: 1rem;
  margin-left: .2rem; line-height: 1;
  transition: transform .2s;
  color: var(--muted);
}
.menu-has-dropdown.is-open .nav-arrow { transform: rotate(90deg); color: var(--gold); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px; max-width: 280px;
  background: rgba(18,18,26,.97);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 16px;
  padding: .5rem 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 500;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Piccola freccia decorativa sopra */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(18,18,26,.97);
  border-left: 1px solid rgba(255,215,0,.2);
  border-top: 1px solid rgba(255,215,0,.2);
  transform: translateX(-50%) rotate(45deg);
}

.menu-has-dropdown { position: relative; }

.menu-has-dropdown.is-open .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Ponte invisibile tra link e dropdown — evita la chiusura durante il passaggio */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}

/* Header del dropdown */
.nav-dropdown-header a {
  display: block; padding: .6rem 1rem .8rem;
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold) !important;
  border-bottom: 1px solid rgba(255,215,0,.15);
  margin-bottom: .3rem;
}

/* Voci dropdown */
.nav-dropdown li a {
  display: flex; align-items: center; gap: .7rem;
  padding: .5rem 1rem; color: var(--muted) !important;
  font-size: .86rem !important; letter-spacing: 0 !important;
  text-transform: none !important;
  transition: color .15s, background .15s !important;
}
.nav-dropdown li a:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,.05);
}

/* Thumbnail e iniziale */
.nav-drop-thumb {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.nav-drop-initial {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff;
  background: var(--card);
}

/* Info testo */
.nav-drop-info { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.nav-drop-name { font-weight: 600; color: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-drop-role { font-size: .72rem; color: var(--muted); font-family: 'Space Mono', monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* "Altri X ascoltatori" */
.nav-dropdown-more a {
  border-top: 1px solid var(--border);
  margin-top: .3rem; padding-top: .7rem !important;
  color: var(--cyan) !important; font-weight: 600;
  font-size: .8rem !important;
}

/* ── Mobile dropdown ── */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none;
    border: none; border-radius: 0;
    background: transparent; backdrop-filter: none;
    padding: 0 0 .5rem 1rem;
    display: none; min-width: unset; max-width: unset;
  }
  .nav-dropdown::before { display: none; }

  /* Nel menu mobile aperto mostra i dropdown */
  .menu.is-open .menu-has-dropdown.is-open .nav-dropdown { display: block; }

  .nav-dropdown li a {
    padding: .4rem .5rem !important;
    font-size: .84rem !important;
  }
  .nav-drop-thumb,
  .nav-drop-initial { width: 28px; height: 28px; font-size: .8rem; }
  .nav-dropdown-header a { font-size: .65rem; }
}

/* ═══════════════════════════════════════════
   PAGINA REGISTRAZIONE — Perks
═══════════════════════════════════════════ */
.reg-perks {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; padding: 3rem 1.5rem 2rem;
}
.reg-perk {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.8rem 1.5rem; text-align: center;
  transition: border-color .25s, transform .25s;
}
.reg-perk:hover { border-color: rgba(255,215,0,.3); transform: translateY(-4px); }
.reg-perk-icon  { font-size: 2.2rem; margin-bottom: .8rem; }
.reg-perk-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .04em; margin-bottom: .5rem; color: var(--gold); }
.reg-perk-text  { font-size: .88rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 640px) {
  .reg-perks { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   SINGLE SPEAKER — layout circolare (stile evanDj)
═══════════════════════════════════════════ */
.spk-wrap { padding: 7rem 0 4rem; }

/* Breadcrumb */
.spk-wrap .ssp-back { display:inline-flex; align-items:center; gap:.4rem; color:var(--muted); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:2.5rem; transition:color .2s; }
.spk-wrap .ssp-back:hover { color:var(--gold); }

/* Profilo centrato */
.spk-profile { text-align:center; padding-bottom:2.5rem; border-bottom:1px solid var(--border); margin-bottom:2.5rem; }

/* Cerchio foto */
.spk-avatar-wrap { width:160px; height:160px; border-radius:50%; margin:0 auto 1.5rem; overflow:hidden; border:3px solid rgba(255,215,0,.4); box-shadow:0 0 0 6px rgba(255,215,0,.08), 0 20px 50px rgba(0,0,0,.4); }
.spk-avatar-img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.spk-avatar-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--violet),var(--coral)); font-family:'Bebas Neue',sans-serif; font-size:4rem; color:#fff; }

/* Nome e info */
.spk-name { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.5rem,6vw,4rem); letter-spacing:.04em; line-height:1; margin-bottom:.4rem; }
.spk-nick { color:var(--muted); font-size:.95rem; margin-bottom:.3rem; }
.spk-nick strong { color:var(--gold); }
.spk-role { font-family:'Space Mono',monospace; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--cyan); margin-bottom:.6rem; }
.spk-live { display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,77,109,.12); border:1px solid rgba(255,77,109,.35); border-radius:999px; padding:.35rem .9rem; font-size:.82rem; font-weight:700; color:var(--coral); margin-bottom:1.2rem; animation:pulse-badge 2s infinite; }
.spk-live-dot { width:7px; height:7px; border-radius:50%; background:var(--coral); animation:blink 1s infinite; flex-shrink:0; }

/* Icone */
.spk-icons { display:flex; gap:.7rem; justify-content:center; }
.spk-icon { width:48px; height:48px; border-radius:50%; font-size:1.3rem; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15); transition:all .2s; }
.spk-icon:hover { background:rgba(255,215,0,.15); border-color:var(--gold); transform:scale(1.1); }

/* Contenuto sezioni */
.spk-content { max-width:720px; margin:0 auto; }
.spk-section { margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid var(--border); }
.spk-section:last-of-type { border-bottom:none; }
.spk-section-title { font-family:'Bebas Neue',sans-serif; font-size:1.25rem; letter-spacing:.06em; color:var(--gold); margin-bottom:.7rem; }
.spk-section p { color:var(--muted); line-height:1.8; font-size:.95rem; }

/* Citazione */
.spk-citazione { font-style:italic; font-size:1rem; color:rgba(255,255,255,.6); border-left:3px solid var(--gold); padding:.8rem 1.2rem; margin:0 0 2rem; line-height:1.7; background:rgba(255,215,0,.04); border-radius:0 8px 8px 0; }

/* Audio */
.spk-audio { width:100%; border-radius:10px; margin-top:.3rem; }
.spk-listen-link { color:var(--cyan); font-weight:600; font-size:.92rem; transition:color .2s; }
.spk-listen-link:hover { color:var(--gold); }

/* Top 5 */
.spk-top5 { list-style:none; padding:0; }
.spk-top5 li { display:flex; align-items:baseline; gap:.9rem; padding:.65rem .5rem; border-radius:8px; transition:background .2s; }
.spk-top5 li:hover { background:rgba(255,255,255,.04); }
.spk-top5 li+li { border-top:1px solid var(--border); }
.spk-top5-num { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; line-height:1; color:var(--gold); min-width:26px; text-align:center; flex-shrink:0; }
.spk-top5 li span:last-child { color:var(--muted); font-size:.92rem; line-height:1.4; }

/* Bio */
.spk-bio { color:var(--muted); line-height:1.9; font-size:.95rem; }

/* Share */
.spk-share { display:flex; gap:.6rem; flex-wrap:wrap; padding-top:2rem; border-top:1px solid var(--border); margin-top:2rem; }

/* Mobile */
@media (max-width:600px) {
  .spk-wrap { padding:6rem 0 3rem; }
  .spk-avatar-wrap { width:130px; height:130px; }
  .spk-name { font-size:2.2rem; }
  .spk-content { padding:0 .5rem; }
}

/* ═══════════════════════════════════════════
   OVERRIDE FORZATO — sfondo scuro globale
   Sovrascrive qualsiasi CSS di WordPress/plugin
   che imposta sfondo bianco
═══════════════════════════════════════════ */
html,
body,
body.wp-singular,
body.single,
body.single-hz432_speaker,
body.page,
body.home,
body.blog,
body.archive,
body.search,
body.error404 {
  background-color: #0A0A0F !important;
  color: #F0EEE8 !important;
}

/* Blocca qualsiasi sfondo bianco iniettato da plugin */
#page,
#content,
#primary,
#main,
.site,
.site-content,
.wp-site-blocks {
  background-color: transparent !important;
}

/* Assicura che i blocchi Gutenberg usino i nostri colori */
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
  color: inherit;
}

/* Evita il flash bianco durante il caricamento */
html { background-color: #0A0A0F; }

/* ═══════════════════════════════════════════
   PAGINA ASCOLTATORI — CTA Registrazione
═══════════════════════════════════════════ */
.asc-page-grid-wrap { padding: 3rem 0 1rem; }

/* CTA Section */
.asc-cta-section { padding: 3rem 0 5rem; }

.asc-cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(155,93,229,.12) 0%, rgba(255,77,109,.08) 100%);
  border: 1px solid rgba(155,93,229,.3);
  border-radius: 28px; padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.asc-cta-orb-1 { position:absolute;width:400px;height:400px;border-radius:50%;background:rgba(155,93,229,.12);filter:blur(80px);top:-100px;right:-80px;pointer-events:none; }
.asc-cta-orb-2 { position:absolute;width:300px;height:300px;border-radius:50%;background:rgba(255,77,109,.08);filter:blur(80px);bottom:-80px;left:-50px;pointer-events:none; }

.asc-cta-inner { position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;text-align:center;gap:2rem; }

/* Avatars preview */
.asc-cta-avatars { display:flex; justify-content:center; }
.asc-cta-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff;
  margin-left: -10px; overflow: hidden; flex-shrink: 0;
}
.asc-cta-avatar:first-child { margin-left: 0; }
.asc-cta-avatar img { width:100%; height:100%; object-fit:cover; }
.asc-cta-avatar-more { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); font-size:.78rem; font-family:'DM Sans',sans-serif; font-weight:700; color:var(--muted); }

/* Testo CTA */
.asc-cta-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2rem,5vw,3rem); letter-spacing:.04em; background:linear-gradient(135deg,var(--gold),var(--amber),var(--coral)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:.6rem; }
.asc-cta-sub { color:var(--muted); font-size:.97rem; line-height:1.7; max-width:520px; }

/* Perks */
.asc-cta-perks { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; margin-top:.5rem; }
.asc-perk { background:rgba(255,255,255,.06); border:1px solid var(--border); border-radius:999px; padding:.3rem .9rem; font-size:.8rem; font-weight:600; color:var(--muted); }

/* Bottone */
.asc-cta-btn { font-size:1rem; padding:1rem 2.5rem; box-shadow:0 8px 40px rgba(155,93,229,.35); transition:transform .2s, box-shadow .2s; }
.asc-cta-btn:hover { transform:translateY(-3px); box-shadow:0 12px 50px rgba(155,93,229,.5); }
.asc-cta-note { font-size:.75rem; color:var(--muted); margin-top:.5rem; }

/* Form wrap */
.asc-form-wrap {
  background: var(--card); border:1px solid rgba(255,215,0,.15);
  border-radius:24px; padding:2rem 2rem 1rem;
  margin-top:1.5rem; position:relative;
}
.asc-form-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; }
.asc-form-header h3 { font-family:'Bebas Neue',sans-serif; font-size:1.6rem; color:var(--gold); letter-spacing:.04em; }
.asc-form-close { background:rgba(255,255,255,.08); border:1px solid var(--border); border-radius:50%; width:34px; height:34px; cursor:pointer; color:var(--muted); font-size:1rem; transition:all .2s; display:flex; align-items:center; justify-content:center; }
.asc-form-close:hover { background:rgba(255,77,109,.15); border-color:var(--coral); color:var(--coral); }

/* Nascondi il titolo del form (già c'è sopra) */
.asc-form-wrap .hz432-reg-header { display:none; }

/* Mobile */
@media (max-width:640px) {
  .asc-cta-card { padding:2rem 1.2rem; border-radius:20px; }
  .asc-cta-perks { gap:.5rem; }
  .asc-perk { font-size:.72rem; padding:.25rem .7rem; }
  .asc-cta-btn { width:100%; justify-content:center; }
  .asc-form-wrap { padding:1.5rem 1rem; }
}

/* ═══════════════════════════════════════════
   SPEAKER CARD = stesso stile ascoltatori
   .hz432-asc-card è ora usato per entrambi
═══════════════════════════════════════════ */

/* Le card speaker sono link — rimuovi underline e mantieni colore */
.hz432-sc-speakers-wrap a.hz432-asc-card,
.spk-other-wrap a.hz432-asc-card {
  color: var(--text);
  text-decoration: none;
  display: flex;
}
.hz432-sc-speakers-wrap a.hz432-asc-card:hover,
.spk-other-wrap a.hz432-asc-card:hover {
  color: var(--text);
}

/* Avatar speaker circolare esattamente come ascoltatori */
.hz432-asc-card .hz432-asc-avatar {
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

/* "Scopri di più →" in fondo alla card */
a.hz432-asc-card > [style*="Scopri"] {
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   SPEAKER — pill programma (dal palinsesto)
═══════════════════════════════════════════ */
.spk-show-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,215,0,.08);
  border: 1px solid rgba(255,215,0,.25);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .82rem; font-weight: 600; color: var(--gold);
  margin-bottom: .8rem;
}

/* Speaker tags: Gli piace (verde) e Non gli piace (corallo) */
.spk-tags-piace .hz432-asc-tag {
  background: rgba(6,214,160,.15);
  color: var(--green);
  border: 1px solid rgba(6,214,160,.35);
}
.spk-tags-nonpiace .hz432-asc-tag {
  background: rgba(255,77,109,.12);
  color: var(--coral);
  border: 1px solid rgba(255,77,109,.3);
}

/* ── Riga canzone in onda ── */
.on-air-song-row {
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap; margin-top: .4rem;
  font-size: .82rem;
}
.on-air-note { font-size: .9rem; }
.on-air-artist { color: var(--gold); font-weight: 600; }
.on-air-sep    { color: var(--muted); }
.on-air-song   { color: var(--text); }

/* ═══════════════════════════════════════════
   MOBILE FIX — Patch v2
   Aggiunte maggio 2026
═══════════════════════════════════════════ */

/* Volume slider — nascosto su mobile piccolo, più grande su touch */
@media (max-width: 768px) {
  #volumeSlider { display: none; }
  .player-controls { justify-content: center; }
}

/* Player card — fix padding su schermi stretti */
@media (max-width: 400px) {
  .player-card { padding: 1rem .85rem; border-radius: 14px; }
  .btn-play { width: 48px; height: 48px; font-size: 1.2rem; }
  .btn-secondary { width: 36px; height: 36px; font-size: .85rem; }
  .now-playing-title { font-size: .9rem; }
}

/* Palinsesto — fix overflow tab bar su tutti i mobili */
@media (max-width: 768px) {
  .day-tabs {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .day-tabs::-webkit-scrollbar { display: none; }
  .schedule-grid { grid-template-columns: 1fr !important; }
}

/* Hero — fix testo su mobile */
@media (max-width: 480px) {
  .hero-tagline { font-size: .85rem; line-height: 1.6; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: .8rem; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { text-align: center; justify-content: center; }
}

/* Ascoltatori — griglia mobile */
@media (max-width: 480px) {
  .listeners-grid { grid-template-columns: 1fr; }
}

/* Tap targets minimi 44px su tutti i link nav */
@media (hover: none) {
  #primary-navigation .menu li a { min-height: 44px; display: flex; align-items: center; }
  .btn-play, .btn-secondary { min-height: 44px; min-width: 44px; }
  .day-tab { min-height: 44px; }
  .menu-toggle { min-height: 44px; min-width: 44px; }
}

/* Fix: corpo pagina non scrollabile quando menu mobile è aperto */
body.menu-open { overflow: hidden; }

/* Dropdown mobile — fix scroll interno se ci sono tanti speaker */
@media (max-width: 768px) {
  .menu.is-open .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    padding: .5rem 0 .5rem 1rem;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .menu.is-open .nav-dropdown::-webkit-scrollbar { display: none; }
  .menu.is-open .nav-dropdown::before,
  .menu.is-open .nav-dropdown::after { display: none; }
  .menu.is-open .menu-has-dropdown.is-open .nav-dropdown { display: block; }
}



/* ═══════════════════════════════════════════
   HP-NEWS — Split layout homepage
   Sinistra: featured/contest  |  Destra: lista
═══════════════════════════════════════════ */

#hp-news { padding: 3rem 0 5rem; }

/* Wrapper split */
.hp-news-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
}

/* ── SINISTRA: card featured ── */
.hp-news-featured {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  min-height: 420px;
  background: var(--card);
}
.hp-news-feat-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: rgba(155,93,229,.12);
  transition: transform .5s ease;
}
.hp-news-featured:hover .hp-news-feat-img { transform: scale(1.04); }
.hp-news-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,10,.92) 0%, rgba(5,5,10,.5) 50%, rgba(5,5,10,.15) 100%);
}
.hp-news-feat-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 1;
}
.hp-news-feat-meta {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .8rem; flex-wrap: wrap;
}
.hp-news-feat-date {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.hp-news-feat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1; color: #fff;
  margin-bottom: .7rem;
}
.hp-news-feat-excerpt {
  color: rgba(255,255,255,.7);
  font-size: .88rem; line-height: 1.65;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-news-feat-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #000; font-weight: 700; font-size: .82rem;
  padding: .55rem 1.2rem; border-radius: 999px;
  transition: filter .2s, transform .2s;
  align-self: flex-start;
}
.hp-news-featured:hover .hp-news-feat-cta {
  filter: brightness(1.1); transform: translateX(2px);
}

/* Badge categoria */
.hp-news-badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(0,245,255,.15);
  color: var(--cyan);
  border: 1px solid rgba(0,245,255,.3);
}
.hp-news-badge--contest {
  background: rgba(255,77,109,.2);
  color: #ff4d6d;
  border-color: rgba(255,77,109,.4);
}
.hp-news-badge--sm { font-size: .6rem; padding: .15rem .55rem; }

/* ── DESTRA: sidebar lista ── */
.hp-news-sidebar {
  background: var(--card);
  display: flex; flex-direction: column;
}
.hp-news-sidebar-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.hp-news-sidebar-title {
  font-family: 'Space Mono', monospace;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text);
}
.hp-news-all-link {
  font-family: 'Space Mono', monospace;
  font-size: .68rem; color: var(--gold);
  text-decoration: none; font-weight: 700;
  letter-spacing: .03em;
  transition: color .2s;
}
.hp-news-all-link:hover { color: var(--amber); }

/* Lista item */
.hp-news-list { display: flex; flex-direction: column; flex: 1; }
.hp-news-item {
  display: flex; align-items: center;
  gap: 1rem; padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .18s;
}
.hp-news-item:last-child { border-bottom: none; flex: 1; align-items: flex-start; }
.hp-news-item:hover { background: rgba(255,255,255,.03); }
.hp-news-item-text { flex: 1; min-width: 0; }
.hp-news-item-meta {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .4rem; flex-wrap: wrap;
}
.hp-news-item-date {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; color: var(--muted);
}
.hp-news-item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; line-height: 1.2;
  color: var(--text); margin-bottom: .4rem;
  transition: color .18s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-news-item:hover .hp-news-item-title { color: var(--gold); }
.hp-news-item-read {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; color: var(--gold);
  font-weight: 700;
}
.hp-news-item-thumb {
  width: 68px; height: 68px;
  border-radius: 10px; flex-shrink: 0;
  background-size: cover; background-position: center;
  background-color: rgba(255,215,0,.08);
}
.hp-news-item-thumb--empty {
  background: linear-gradient(135deg, rgba(155,93,229,.2), rgba(0,245,255,.1));
}

.hp-news-empty {
  color: var(--muted); font-size: .85rem;
  padding: 1.5rem 1.6rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hp-news-split { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hp-news-split { grid-template-columns: 1fr; min-height: auto; }
  .hp-news-featured { min-height: 320px; }
  .hp-news-sidebar-header { padding: 1rem 1.2rem .8rem; }
  .hp-news-item { padding: 1rem 1.2rem; }
  .hp-news-item-thumb { width: 56px; height: 56px; }
}

/* ═══════════════════════════════════════════
   CHROME FIX — nav e schede speaker
═══════════════════════════════════════════ */

/* Fix: backdrop-filter in Chrome su position:fixed crea nuovo stacking context
   che rompe i gradient-text nei child con -webkit-background-clip:text */
#masthead {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}

/* Fix: dropdown arrow - rimuove il conflitto di doppio transform */
.nav-dropdown::before {
  transform: translateX(-50%) rotate(45deg) !important;
}

/* Fix: le schede speaker con overflow:hidden + border-radius in Chrome
   perdono il border-radius durante le transizioni hover */
.schedule-card,
.news-card,
.listener-card,
.team-card,
.hp-rub-channel {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Fix: gradient-text su elementi dentro backdrop-filter in Chrome */
.site-title a,
.hero-freq,
.section-title .gradient-text,
.section-title .gradient-text-2 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Fix: menu mobile su Chrome Android — gap tra nav-item e dropdown */
@media (hover: none) {
  .nav-dropdown {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(12,12,20,.99);
  }
}

/* Fix: schede speaker su Chrome — font Bebas Neue a volte non viene caricato */
.spk-bio, .spk-section-title, .spk-feat-title {
  -webkit-font-smoothing: antialiased;
}


/* ═══════════════════════════════════════════
   RUBRICHE — Homepage section
═══════════════════════════════════════════ */

#rubriche { padding: 3rem 0 5rem; }

.hp-rub-header {
  margin-bottom: 2rem;
}

.hp-rub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Channel card */
.hp-rub-channel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .25s, transform .25s;
}
.hp-rub-channel:hover { transform: translateY(-3px); }

/* Accent top border per canale */
.hp-rub-channel--gossip {
  border-top: 3px solid #FF4D6D;
}
.hp-rub-channel--gossip:hover { border-color: #FF4D6D; }

.hp-rub-channel--odioso {
  border-top: 3px solid var(--cyan);
}
.hp-rub-channel--odioso:hover { border-color: var(--cyan); }

/* Header del canale */
.hp-rub-channel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hp-rub-channel-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  background: rgba(255,255,255,.06);
}
.hp-rub-channel--gossip .hp-rub-channel-icon { background: rgba(255,77,109,.12); }
.hp-rub-channel--odioso .hp-rub-channel-icon { background: rgba(0,245,255,.1); }

.hp-rub-channel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: .06em;
  margin: 0; line-height: 1.1;
}
.hp-rub-channel--gossip .hp-rub-channel-title { color: #FF4D6D; }
.hp-rub-channel--odioso .hp-rub-channel-title { color: var(--cyan); }

.hp-rub-channel-author {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; color: var(--muted);
  letter-spacing: .08em;
}
.hp-rub-all-link {
  margin-left: auto; flex-shrink: 0;
  font-family: 'Space Mono', monospace;
  font-size: .68rem; font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.hp-rub-channel--gossip .hp-rub-all-link { color: #FF4D6D; }
.hp-rub-channel--odioso .hp-rub-all-link { color: var(--cyan); }
.hp-rub-all-link:hover { opacity: .7; }

.hp-rub-channel-desc {
  font-size: .85rem; color: var(--muted);
  line-height: 1.65; margin: 0;
  border-left: 2px solid var(--border);
  padding-left: .9rem;
}

/* Lista post dentro il canale */
.hp-rub-posts {
  display: flex; flex-direction: column; gap: .8rem;
  flex: 1;
}
.hp-rub-post {
  display: flex; gap: .9rem; align-items: center;
  text-decoration: none;
  padding: .8rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  transition: background .18s, border-color .18s;
}
.hp-rub-channel--gossip .hp-rub-post:hover { background: rgba(255,77,109,.07); border-color: rgba(255,77,109,.2); }
.hp-rub-channel--odioso .hp-rub-post:hover { background: rgba(0,245,255,.05); border-color: rgba(0,245,255,.2); }

.hp-rub-post-thumb {
  width: 60px; height: 60px; border-radius: 10px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.hp-rub-post-thumb--empty { background: rgba(255,255,255,.06); }
.hp-rub-post-thumb--gossip { background: linear-gradient(135deg, rgba(255,77,109,.25), rgba(255,140,0,.15)); }
.hp-rub-post-thumb--odioso { background: linear-gradient(135deg, rgba(0,245,255,.15), rgba(155,93,229,.2)); }

.hp-rub-post-body { flex: 1; min-width: 0; }
.hp-rub-post-date {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; color: var(--muted);
  display: block; margin-bottom: .25rem;
}
.hp-rub-post-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; line-height: 1.2;
  color: var(--text); margin: 0 0 .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-rub-post:hover .hp-rub-post-title { color: inherit; }
.hp-rub-channel--gossip .hp-rub-post:hover .hp-rub-post-title { color: #FF4D6D; }
.hp-rub-channel--odioso .hp-rub-post:hover .hp-rub-post-title { color: var(--cyan); }

.hp-rub-post-read {
  font-family: 'Space Mono', monospace;
  font-size: .62rem; font-weight: 700;
}
.hp-rub-channel--gossip .hp-rub-post-read { color: #FF4D6D; }
.hp-rub-channel--odioso .hp-rub-post-read { color: var(--cyan); }

.hp-rub-empty {
  color: var(--muted); font-size: .85rem;
  font-style: italic; padding: .5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hp-rub-grid { grid-template-columns: 1fr; }
  .hp-rub-channel { padding: 1.4rem; }
}

/* ═══════════════════════════════════════════
   NAV — Voce Home
═══════════════════════════════════════════ */
.nav-home-icon {
  font-size: 1.05em;
  margin-right: .15rem;
  display: inline-block;
  vertical-align: -1px;
}
