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

:root {
  --bg-main: #060913;
  --bg-card: rgba(13, 19, 35, 0.76);
  --bg-card-hover: rgba(18, 27, 49, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-active: rgba(0, 210, 255, 0.4);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-cyan: #00d2ff;
  --accent-blue: #0072ff;
  --accent-gold: #f6c86b;
  --accent-red: #ff3b5c;
  --accent-green: #00f5a0;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-lg: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(0, 210, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Ambient Glow Backgrounds */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.ambient-orb-1 {
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.16) 0%, transparent 70%);
}

.ambient-orb-2 {
  top: 40%;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(246, 200, 107, 0.08) 0%, transparent 70%);
}

.ambient-orb-3 {
  bottom: -150px;
  right: 10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 59, 92, 0.12) 0%, transparent 70%);
}

/* Top Live Ticker Bar */
.ticker-wrap {
  position: sticky;
  top: 0;
  z-index: 102;
  background: rgba(4, 7, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  font-size: 0.78rem;
}

.ticker-badge {
  background: linear-gradient(135deg, #ff3b5c 0%, #d90429 100%);
  color: #ffffff;
  font-weight: 800;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 2px 0 10px rgba(255, 59, 92, 0.4);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  gap: 40px;
  padding-left: 20px;
}

.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1f5f9;
}

.ticker-item strong {
  color: #ffffff;
}

.ticker-item a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ticker-item a:hover {
  color: var(--accent-gold) !important;
  text-decoration: underline;
}

.ticker-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.torino-header {
  position: sticky;
  top: 38px;
  z-index: 101;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 9, 19, 0.85);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.35);
  transition: transform 0.3s ease;
}

.brand-block:hover .brand-emblem {
  transform: scale(1.05) rotate(2deg);
}

.brand-emblem svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.brand-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-subline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff6584;
  letter-spacing: 0.8px;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #ff3b5c;
  border-radius: 50%;
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(255, 59, 92, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 59, 92, 0); }
}

/* Discreet Area Riservata Button */
.btn-casa-secure {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-casa-secure:hover {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15) 0%, rgba(0, 114, 255, 0.25) 100%);
  border-color: var(--accent-cyan);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 210, 255, 0.25);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 24px auto 36px;
  padding: 0 24px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 48px;
  background: #060913;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
}

.hero-slides-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0;
  transform: scale(1.0);
  transition: opacity 1.6s ease-in-out, transform 9s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.06);
  z-index: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 9, 19, 0.28) 0%, rgba(6, 9, 19, 0.72) 55%, #060913 100%);
  pointer-events: none;
}

.hero-rotator-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 14, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.rotator-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#heroSlideLabel {
  font-size: 0.84rem;
  color: #f1f5f9;
  font-weight: 600;
  white-space: nowrap;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-dot.active {
  width: 22px;
  border-radius: 6px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

.hero-text-box {
  position: relative;
  z-index: 3;
  max-width: 820px;
}


.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 200, 107, 0.15);
  border: 1px solid rgba(246, 200, 107, 0.4);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-heading span {
  background: linear-gradient(135deg, #ffffff 0%, #00d2ff 60%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.12rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-chip {
  background: rgba(13, 19, 35, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
}

.stat-chip strong {
  color: #ffffff;
}

/* Two-column Main Grid (TV Theater & Live Radar) */
.content-grid {
  max-width: 1320px;
  margin: 0 auto 50px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.9fr 1.1fr;
  gap: 28px;
}

@media (max-width: 1040px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Glass Card */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.panel-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge.red {
  background: rgba(255, 59, 92, 0.16);
  color: #ff3b5c;
}

.icon-badge.cyan {
  background: rgba(0, 210, 255, 0.16);
  color: #00d2ff;
}

.icon-badge.gold {
  background: rgba(246, 200, 107, 0.16);
  color: var(--accent-gold);
}

.panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.panel-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.panel-badge.live-tag {
  background: rgba(255, 59, 92, 0.15);
  border: 1px solid rgba(255, 59, 92, 0.35);
  color: #ff6584;
}

/* Sesta Rete TV Player Box */
.tv-frame-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
}

.tv-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tv-actions-bar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.tv-station-desc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.tv-control-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.tv-control-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-cyan);
}

/* Weather & Live Clock Panel */
.clock-display {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clock-time {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.clock-date {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-align: right;
}

.weather-core {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 8px;
}

.weather-temp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.weather-temp-celsius {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.weather-condition-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.weather-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-glass);
  padding-top: 18px;
}

.metric-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.metric-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

/* Category Filter Bar */
.section-wrapper {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.filter-btn.active {
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  border-color: #00d2ff;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.3);
}

/* Feature Cards Grid */
.cards-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

.torino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.torino-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px -10px rgba(0, 210, 255, 0.22);
}

.card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.torino-card:hover .card-media img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  font-size: 0.82rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Action Link / Call Button */
.call-badge-link {
  background: rgba(0, 245, 160, 0.14);
  border: 1px solid rgba(0, 245, 160, 0.35);
  color: var(--accent-green);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.call-badge-link:hover {
  background: var(--accent-green);
  color: #060913;
}

/* Footer */
.main-footer {
  background: #04060d;
  border-top: 1px solid var(--border-glass);
  padding: 48px 24px 36px;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.5;
}

/* Responsive & Additional Sections */
@media (max-width: 900px) {
  .header-nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-card {
    min-height: 380px;
    padding: 32px 24px;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .cards-masonry {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 12px 16px;
  }
  .brand-subline {
    display: none;
  }
}

/* Header Navigation Links */
.header-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ZTL & GTT Mobility Card */
.ztl-mobility-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.3s ease;
}

.ztl-mobility-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.ztl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ztl-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ztl-icon {
  font-size: 1.4rem;
}

.ztl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.ztl-badge.ztl-free {
  background: rgba(0, 245, 160, 0.12);
  border: 1px solid rgba(0, 245, 160, 0.35);
  color: var(--accent-green);
}

.ztl-badge.ztl-active {
  background: rgba(255, 59, 92, 0.15);
  border: 1px solid rgba(255, 59, 92, 0.4);
  color: #ff6584;
}

.ztl-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 8px;
}

.metro-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-glass);
}

.metro-badge {
  background: #e02424;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

/* Breaking News Feed Section */
.last-sync-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.btn-refresh-news {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh-news:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

.btn-refresh-news.rotating svg {
  animation: spinNews 0.6s linear infinite;
}

@keyframes spinNews {
  100% { transform: rotate(360deg); }
}

.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 22px;
}

.news-loading-skeleton {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 92, 0.45);
  box-shadow: 0 16px 36px -10px rgba(255, 59, 92, 0.2);
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-category-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-sport {
  background: rgba(0, 210, 255, 0.14);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--accent-cyan);
}

.cat-cultura {
  background: rgba(246, 200, 107, 0.14);
  border: 1px solid rgba(246, 200, 107, 0.35);
  color: var(--accent-gold);
}

.cat-cronaca {
  background: rgba(255, 59, 92, 0.14);
  border: 1px solid rgba(255, 59, 92, 0.35);
  color: #ff6584;
}

.cat-regione {
  background: rgba(0, 245, 160, 0.14);
  border: 1px solid rgba(0, 245, 160, 0.35);
  color: var(--accent-green);
}

.news-time-badge {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.news-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.news-card-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 12px;
}

.news-source-tag {
  font-size: 0.74rem;
  font-weight: 800;
  color: #ff3b5c;
  letter-spacing: 0.5px;
}

.news-read-more {
  font-size: 0.84rem;
  font-weight: 700;
  color: #00d2ff;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-read-more:hover {
  color: var(--accent-gold);
  text-decoration: underline;
  transform: translateX(3px);
}



/* Live Web Radio & Canvas Visualizer */
.radio-card-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, rgba(13, 19, 35, 0.9) 0%, rgba(18, 27, 49, 0.75) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
}

@media (max-width: 960px) {
  .radio-card-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

.radio-station-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.radio-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.radio-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.station-selector-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.station-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.station-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.station-chip.active {
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  border-color: #00d2ff;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.35);
}

.radio-player-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.visualizer-container {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.6);
}

#audioVisualizer {
  width: 100%;
  max-width: 400px;
  height: 90px;
}

.radio-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.btn-play-radio {
  flex-grow: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.35);
}

.btn-play-radio:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 210, 255, 0.5);
}

.radio-vol-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

#radioVolume {
  accent-color: var(--accent-cyan);
  width: 80px;
  cursor: pointer;
}

/* VIP Access PIN Modal (2580) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.pin-modal-card {
  position: relative;
  width: 92%;
  max-width: 380px;
  background: #0c1222;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show .pin-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.pin-modal-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-modal-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.pin-modal-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pin-display-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  background: transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-dot.filled {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 14px var(--accent-cyan);
}

.pin-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.keypad-btn {
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.keypad-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.keypad-btn:active {
  transform: scale(0.94);
}

.keypad-btn.action {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pin-error-msg {
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 22px;
}

/* ==========================================================================
   Locali Hype & Nuove Aperture 2026 Section
   ========================================================================== */
.hype-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hype-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.hype-card {
  background: rgba(14, 21, 38, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hype-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 107, 107, 0.15);
}

.hype-card.hot-card {
  border-color: rgba(255, 107, 107, 0.35);
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.07) 0%, rgba(14, 21, 38, 0.75) 100%);
}

.hype-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.hype-icon-avatar {
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hype-badge-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hype-tag-main {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 107, 107, 0.18);
  border: 1px solid rgba(255, 107, 107, 0.45);
  color: #ff6b6b;
}

.hype-status-tag {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.hype-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.hype-tagline {
  font-size: 0.86rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}

.hype-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.hype-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.hype-chip {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.hype-footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hype-address-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.2s ease;
}

.hype-address-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.35);
}

.hype-address-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hype-address-pin {
  font-size: 0.95rem;
  line-height: 1;
}

.hype-address-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.hype-address-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  word-break: normal;
  white-space: normal;
  letter-spacing: 0.1px;
}

.hype-btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.38);
  color: var(--accent-cyan);
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.hype-btn-maps:hover {
  background: var(--accent-cyan);
  color: #040914;
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.35);
  transform: translateY(-1px);
}

/* Food Press Live Radar */
.hype-press-panel {
  background: rgba(10, 15, 28, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-top: 30px;
}

.hype-press-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.press-news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.press-news-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.press-news-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 200, 107, 0.4);
  transform: translateY(-2px);
}

.press-news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.press-news-title {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-rotator-badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.74rem;
  }
  #heroSlideLabel {
    display: none;
  }
}

/* ==========================================================================
   Eventi, Mostre & Museo Nazionale del Cinema Section
   ========================================================================== */
.events-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.events-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Special Focus Box for Museo del Cinema */
.cinema-spotlight-box {
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.12) 0%, rgba(30, 27, 75, 0.65) 100%);
  border: 1px solid rgba(217, 70, 239, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cinema-spotlight-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cinema-mole-icon {
  font-size: 2.8rem;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cinema-spotlight-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.cinema-spotlight-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  max-width: 640px;
  line-height: 1.45;
}

.cinema-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(217, 70, 239, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cinema-spotlight-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217, 70, 239, 0.5);
  filter: brightness(1.1);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.event-card {
  background: rgba(14, 21, 38, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(192, 132, 252, 0.15);
}

.event-card.featured-event {
  border-color: rgba(192, 132, 252, 0.35);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(14, 21, 38, 0.75) 100%);
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.event-icon-avatar {
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-badges-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.event-tag-main {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #c084fc;
}

.event-date-pill {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.event-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.event-subtitle {
  font-size: 0.86rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}

.event-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.event-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.event-chip {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.event-footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-venue-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.2s ease;
}

.event-venue-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 85, 247, 0.4);
}

.event-venue-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-venue-pin {
  font-size: 0.95rem;
  line-height: 1;
}

.event-venue-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #c084fc;
}

.event-venue-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  word-break: normal;
  white-space: normal;
  letter-spacing: 0.1px;
}

.event-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #e9d5ff;
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.event-btn-link:hover {
  background: #a855f7;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.45);
  transform: translateY(-1px);
}

/* Dual Feed Box for Live Museo del Cinema & City Agenda */
.events-live-feeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.live-feed-box {
  background: rgba(10, 15, 28, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.live-feed-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.live-feed-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.live-feed-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-feed-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.live-feed-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 132, 252, 0.4);
  transform: translateY(-2px);
}

.live-feed-item-title {
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.live-feed-item-meta {
  font-size: 0.72rem;
  color: var(--accent-gold);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .cinema-spotlight-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .events-live-feeds-grid {
    grid-template-columns: 1fr;
  }
}


