/* ==========================================================================
   EUROVISION SONG CONTEST 2027 BURGAS - OFFICIAL DESIGN SYSTEM
   Domain: eurovision27.eu | Inspired by https://eurovision2027.bg/
   ========================================================================== */

/* No @import here. Each page <link>s exactly the component sheets it uses:
   home pages take all of them, the legal and error pages take navigation,
   footer and consent only. Importing them from inside main.css loaded them a
   second time on home pages and, on the other 36, put countdown, venue-map and
   timeline behind an extra serialised round trip for rules that match nothing
   there. It also meant the same selector resolved differently by page type. */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Official Eurovision 2027 Bulgaria Spectrum Palette */
  --euro-accent-start: #d20d55;
  --euro-accent-mid: #6e2fd2;
  --euro-accent-end: #0133c3;
  --euro-blue: #0133c3;
  --euro-accent-cue: #eadb4f;
  --euro-bnt-rail: #38454d;

  /* Spectrum Gradients */
  --euro-spectrum: linear-gradient(90deg, #d20d55 0%, #6e2fd2 52%, #0133c3 100%);
  --euro-spectrum-135: linear-gradient(135deg, #d20d55 0%, #6e2fd2 50%, #0133c3 100%);
  --euro-spectrum-subtle: linear-gradient(120deg, rgba(210, 13, 85, 0.08), rgba(110, 47, 210, 0.12) 52%, rgba(1, 51, 195, 0.15));
  --euro-spectrum-hover: linear-gradient(90deg, #e61965 0%, #7d3fe4 52%, #1447db 100%);

  /* Theme: Normal / Light (Official Light Surface with Eurovision Spectrum) */
  --bg-body: #f2f5fb;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #e6ebf7;
  --bg-surface-glass: rgba(255, 255, 255, 0.92);
  --bg-surface-card: #ffffff;
  --bg-frame: #dbe3f3;
  
  --border-subtle: rgba(7, 17, 63, 0.12);
  --border-medium: rgba(7, 17, 63, 0.20);
  --border-strong: rgba(7, 17, 63, 0.32);
  --border-focus: var(--euro-accent-end);

  --text-main: #07113f;
  --text-muted: #596680;
  --text-dim: #475467;
  --text-inverse: #ffffff;

  --shadow-sm: 0 1px 3px 0 rgba(7, 17, 63, 0.06);
  --shadow-md: 0 6px 18px -2px rgba(7, 17, 63, 0.09);
  --shadow-lg: 0 16px 36px -4px rgba(7, 17, 63, 0.12);

  /* Typography */
  --font-family-base: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-display: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Consolas, monospace;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem);
  --font-size-3xl: clamp(2.25rem, 1.8rem + 2.5vw, 3.5rem);

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

  /* Layout */
  --container-max: 1180px;
  --container-narrow: 800px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.14s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. MODERN CSS RESET & AMBIENT BROADCAST TEXTURE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-body);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(210, 13, 85, 0.05), transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(1, 51, 195, 0.06), transparent 34%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link (Accessible Bypass Blocks) */
.skip-link,
.skip-to-content {
  position: absolute;
  top: -120px;
  left: var(--space-md);
  background: var(--euro-accent-start);
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--font-size-sm);
  z-index: 100000;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: top var(--transition-fast);
}

.skip-link:focus,
.skip-to-content:focus {
  top: var(--space-md);
  outline: 3px solid var(--euro-accent-end);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--euro-accent-end);
  outline-offset: 2px;
}

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

a {
  color: var(--euro-accent-end);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--euro-accent-start);
  text-decoration: underline;
}

ul, ol {
  list-style-position: inside;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  color: var(--text-main);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-3xl); margin-bottom: var(--space-md); font-weight: 800; }
h2 { font-size: var(--font-size-2xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--font-size-xl); margin-bottom: var(--space-sm); }
h4 { font-size: var(--font-size-lg); margin-bottom: var(--space-sm); }
h5 { font-size: var(--font-size-md); margin-bottom: var(--space-xs); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--font-size-md);
  line-height: 1.65;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, #07113f 15%, #d20d55 60%, #0133c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-spectrum {
  background: var(--euro-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-crimson { color: var(--euro-accent-start); }
.text-purple { color: var(--euro-accent-mid); }
.text-blue { color: var(--euro-accent-end); }
.text-cue { color: var(--euro-accent-cue); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   5. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

.container-narrow {
  max-width: var(--container-narrow);
}

.main-content {
  flex: 1 0 auto;
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-2xl) auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.section-tag.spectrum {
  color: var(--euro-accent-start);
  border-color: rgba(210, 13, 85, 0.25);
  background: rgba(210, 13, 85, 0.08);
}

.section-tag.cue {
  /* 6.02:1 on the home-page background, 4.82:1 on the 404 background.
     The previous #8c7700 was 4.20:1 and 3.36:1 - both below AA. */
  color: #6f5f00;
  border-color: rgba(111, 95, 0, 0.30);
  background: rgba(234, 219, 79, 0.15);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* --------------------------------------------------------------------------
   6. UI COMPONENTS: BUTTONS, CARDS, STATS, FILTERS, WEATHER, TOAST
   -------------------------------------------------------------------------- */
/* Stats Counter Banner */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 900px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--euro-spectrum);
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-xs);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border-subtle);
}

@media (max-width: 767px) {
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

.stat-num {
  font-family: var(--font-family-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* Key Contest Dates Variant */
/* Single-Line Key Contest Dates Banner */
.dates-banner {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  width: 100%;
}

.dates-banner-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dates-banner-container::-webkit-scrollbar {
  display: none;
}

.dates-banner-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.4rem, 1.2vw, 1.25rem);
  width: max-content;
  min-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .dates-banner-track {
    justify-content: center;
    width: 100%;
  }
}

.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 0.92vw, 0.92rem);
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid rgba(7, 17, 63, 0.18);
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(7, 17, 63, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.date-chip:hover {
  border-color: var(--euro-accent-start);
  transform: translateY(-1px);
}

.date-chip-badge {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  background: #0133c3;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-family-display);
  font-size: clamp(0.76rem, 0.85vw, 0.84rem);
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(1, 51, 195, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.date-chip-badge.badge-final {
  background: #d20d55;
  color: #ffffff;
  box-shadow: 0 1px 4px rgba(210, 13, 85, 0.35);
}

.date-chip-day {
  font-weight: 700;
  color: #07113f;
  white-space: nowrap;
  flex-shrink: 0;
}

.date-chip-sep {
  color: #d20d55;
  font-weight: 900;
  font-size: 0.95rem;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.date-chip-title {
  font-weight: 700;
  color: #0133c3;
  white-space: nowrap;
  flex-shrink: 0;
}

.date-chip-title.title-final {
  color: #d20d55;
  font-weight: 800;
}

.date-banner-divider {
  color: var(--border-medium);
  font-weight: 300;
  font-size: 1.25rem;
  user-select: none;
  flex-shrink: 0;
  opacity: 0.65;
}

/* Soundwave Audio Indicator */
.soundwave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 12px;
  vertical-align: middle;
}

.soundwave-bar {
  width: 2px;
  background: var(--euro-accent-start);
  border-radius: 1px;
  animation: soundwave-jump 1.2s infinite ease-in-out;
}

.soundwave-bar:nth-child(1) { height: 4px; animation-delay: 0.1s; background: var(--euro-accent-start); }
.soundwave-bar:nth-child(2) { height: 10px; animation-delay: 0.3s; background: var(--euro-accent-mid); }
.soundwave-bar:nth-child(3) { height: 7px; animation-delay: 0.2s; background: var(--euro-accent-end); }
.soundwave-bar:nth-child(4) { height: 12px; animation-delay: 0.4s; background: var(--euro-accent-cue); }
.soundwave-bar:nth-child(5) { height: 5px; animation-delay: 0.15s; background: var(--euro-accent-start); }

@keyframes soundwave-jump {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.4rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--euro-spectrum);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(210, 13, 85, 0.3);
}

.btn-primary:hover {
  background: var(--euro-spectrum-hover);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(210, 13, 85, 0.45);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  background: var(--bg-surface-elevated);
}

.btn-burgas {
  background: var(--euro-accent-end);
  color: #ffffff;
  border-color: var(--euro-accent-end);
  font-weight: 600;
}

.btn-burgas:hover {
  background: #01289c;
  border-color: #01289c;
  color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: var(--font-size-base);
  border-radius: var(--radius-sm);
}

/* Cards */
.card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-glow-spectrum:hover {
  border-color: rgba(210, 13, 85, 0.45);
}

/* Weather & Climate Traveler Card */
.weather-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.weather-temp {
  font-size: 2.25rem;
  font-weight: 800;
  color: #a08400;
  line-height: 1;
}

.weather-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}

.weather-stat-item {
  text-align: center;
}

.weather-stat-val {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--text-main);
}

.weather-stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-notification {
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: auto;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}


/* Sea Garden Responsive Content/Media Order */
.sea-garden-content {
  order: 1;
}

.sea-garden-media {
  order: 2;
}

@media (min-width: 768px) {
  .sea-garden-content {
    order: 2;
  }
  .sea-garden-media {
    order: 1;
  }
}

/* ==========================================================================
   MyBurgas 5-Card Hub & Travel Center Section
   ========================================================================== */
#travel-hub {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 248, 254, 0.98) 100%);
  border: 1px solid rgba(7, 17, 63, 0.09);
  border-radius: var(--radius-xl, 24px);
  padding: var(--space-2xl) var(--space-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 10px 30px -4px rgba(7, 17, 63, 0.06);
  overflow: hidden;
}

#travel-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--euro-spectrum);
}

.travel-hub-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-xl);
}

.travel-hub-title {
  font-size: clamp(1.6rem, 1.35rem + 1vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
  color: var(--text-main);
}

.hub-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--euro-accent-start);
  box-shadow: 0 0 8px var(--euro-accent-start);
  animation: pulse-dot 2s infinite ease-in-out;
  display: inline-block;
  margin-right: 0.35rem;
}

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

.myburgas-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 1100px) {
  .myburgas-hub-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  #travel-hub {
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
  }
}

.myburgas-resource-card {
  background: #ffffff;
  border: 1px solid rgba(7, 17, 63, 0.1);
  border-radius: 18px;
  padding: 1.65rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(7, 17, 63, 0.05);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.myburgas-resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.85;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.myburgas-resource-card:hover {
  transform: translateY(-8px);
  text-decoration: none;
}

.myburgas-resource-card:hover::before {
  height: 5px;
  opacity: 1;
}

/* Category Accent Borders & Top Stripes */
.card-hotels::before { background: linear-gradient(90deg, #d20d55, #f43f5e); }
.card-restaurants::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.card-transport::before { background: linear-gradient(90deg, #0133c3, #3b82f6); }
.card-beaches::before { background: linear-gradient(90deg, #0ea5e9, #eadb4f); }
.card-island::before { background: linear-gradient(90deg, #6e2fd2, #a855f7); }

.card-hotels:hover {
  border-color: rgba(210, 13, 85, 0.45);
  box-shadow: 0 16px 36px -6px rgba(210, 13, 85, 0.18), 0 4px 12px rgba(7, 17, 63, 0.06);
}

.card-restaurants:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 16px 36px -6px rgba(245, 158, 11, 0.2), 0 4px 12px rgba(7, 17, 63, 0.06);
}

.card-transport:hover {
  border-color: rgba(1, 51, 195, 0.45);
  box-shadow: 0 16px 36px -6px rgba(1, 51, 195, 0.18), 0 4px 12px rgba(7, 17, 63, 0.06);
}

.card-beaches:hover {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 16px 36px -6px rgba(14, 165, 233, 0.2), 0 4px 12px rgba(7, 17, 63, 0.06);
}

.card-island:hover {
  border-color: rgba(110, 47, 210, 0.45);
  box-shadow: 0 16px 36px -6px rgba(110, 47, 210, 0.18), 0 4px 12px rgba(7, 17, 63, 0.06);
}

/* Big Vibrant Emoji Icon Badges */
.myburgas-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.65rem;
  line-height: 1;
  margin-bottom: var(--space-md);
  position: relative;
  user-select: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  filter: drop-shadow(0 4px 6px rgba(7, 17, 63, 0.12));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.35s ease;
}

.icon-hotels {
  background: linear-gradient(135deg, rgba(210, 13, 85, 0.13) 0%, rgba(244, 63, 94, 0.05) 100%);
  border: 1px solid rgba(210, 13, 85, 0.22);
  box-shadow: 0 6px 18px -3px rgba(210, 13, 85, 0.15);
}

.icon-restaurants {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 6px 18px -3px rgba(245, 158, 11, 0.16);
}

.icon-transport {
  background: linear-gradient(135deg, rgba(1, 51, 195, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
  border: 1px solid rgba(1, 51, 195, 0.22);
  box-shadow: 0 6px 18px -3px rgba(1, 51, 195, 0.15);
}

.icon-beaches {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(234, 219, 79, 0.12) 100%);
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 6px 18px -3px rgba(14, 165, 233, 0.16);
}

.icon-island {
  background: linear-gradient(135deg, rgba(110, 47, 210, 0.13) 0%, rgba(147, 51, 234, 0.04) 100%);
  border: 1px solid rgba(110, 47, 210, 0.22);
  box-shadow: 0 6px 18px -3px rgba(110, 47, 210, 0.15);
}

.myburgas-resource-card:hover .myburgas-card-icon {
  transform: scale(1.14) translateY(-3px);
  filter: drop-shadow(0 6px 10px rgba(7, 17, 63, 0.18));
}

.card-hotels:hover .icon-hotels {
  box-shadow: 0 10px 24px -2px rgba(210, 13, 85, 0.28);
}

.card-restaurants:hover .icon-restaurants {
  box-shadow: 0 10px 24px -2px rgba(245, 158, 11, 0.3);
}

.card-transport:hover .icon-transport {
  box-shadow: 0 10px 24px -2px rgba(1, 51, 195, 0.28);
}

.card-beaches:hover .icon-beaches {
  box-shadow: 0 10px 24px -2px rgba(14, 165, 233, 0.3);
}

.card-island:hover .icon-island {
  box-shadow: 0 10px 24px -2px rgba(110, 47, 210, 0.28);
}

/* Card Body & Typography */
.myburgas-card-body {
  display: flex;
  flex-direction: column;
}

.myburgas-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.card-hotels:hover .myburgas-card-title { color: #d20d55; }
.card-restaurants:hover .myburgas-card-title { color: #d97706; }
.card-transport:hover .myburgas-card-title { color: #0133c3; }
.card-beaches:hover .myburgas-card-title { color: #0284c7; }
.card-island:hover .myburgas-card-title { color: #6e2fd2; }

.myburgas-card-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.myburgas-card-link-text {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--euro-accent-end);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.myburgas-resource-card:hover .myburgas-card-link-text {
  transform: translateX(4px);
}

.card-hotels .myburgas-card-link-text { color: #d20d55; }
.card-restaurants .myburgas-card-link-text { color: #d97706; }
.card-transport .myburgas-card-link-text { color: #0133c3; }
.card-beaches .myburgas-card-link-text { color: #0284c7; }
.card-island .myburgas-card-link-text { color: #6e2fd2; }

/* Spotlights */
.spotlight-burgas {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--euro-accent-start);
  border-radius: var(--radius-lg, 16px);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(7, 17, 63, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.spotlight-burgas:hover {
  box-shadow: 0 8px 30px -4px rgba(7, 17, 63, 0.1);
}

.spotlight-burgas::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at top right, rgba(210, 13, 85, 0.08) 0%, rgba(110, 47, 210, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.spotlight-burgas .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--euro-accent-start);
  border: 1px solid rgba(210, 13, 85, 0.25);
  background: rgba(210, 13, 85, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

/* Itinerary Cards */
.itinerary-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color var(--transition-fast);
}

.itinerary-card:hover {
  border-color: var(--border-medium);
}

.itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.itinerary-day-badge {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
}

/* Filter Pills */
.filter-pill-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: var(--space-xl);
}

.filter-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.filter-pill:hover {
  border-color: var(--border-strong);
  color: var(--text-main);
}

.filter-pill.active {
  background: var(--euro-spectrum);
  border-color: transparent;
  color: #ffffff;
}

/* Search Box with Clear Button */
.search-input-wrapper {
  position: relative;
  max-width: 440px;
  margin: 0 auto var(--space-lg) auto;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  color: var(--text-main);
  font-size: var(--font-size-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  border-color: var(--border-focus);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--text-dim);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) 0;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--euro-accent-start);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-dim);
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: rgba(210, 13, 85, 0.4);
}

.faq-summary {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  stroke: var(--euro-accent-start);
}

.faq-content {
  padding: 0 var(--space-lg) var(--space-md) var(--space-lg);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface-card);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--font-size-sm);
}

.table-custom th, .table-custom td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.table-custom th {
  background: var(--bg-surface-elevated);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.04em;
}

.table-custom tr:last-child td {
  border-bottom: none;
}

.table-custom tbody tr:hover {
  background: rgba(7, 17, 63, 0.03);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 27, 46, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--euro-accent-start);
  color: #ff0080;
  background: rgba(35, 42, 70, 0.95);
  box-shadow: 0 6px 20px rgba(121, 40, 202, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}

/* --------------------------------------------------------------------------
   14. OFFICIAL EUROVISION 2027 VISUAL ASSETS & PHOTOGRAPHY STYLES
   -------------------------------------------------------------------------- */
.hero-banner-visual {
  width: 100%;
  max-width: 960px;
  margin: var(--space-lg) auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(210, 13, 85, 0.22);
  border: 1px solid var(--border-medium);
  position: relative;
  background: #07113f;
}

.hero-banner-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Photo Figure Card */
.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.photo-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-surface);
}

.photo-card-media.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

.photo-card-media.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.photo-card-media.aspect-3-2 {
  aspect-ratio: 3 / 2;
}

.photo-card-media.aspect-2-1 {
  aspect-ratio: 2 / 1;
}

.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-card:hover .photo-card-media img {
  transform: scale(1.04);
}

.photo-credit-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(7, 17, 63, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-family: var(--font-family-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.photo-card-caption {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.photo-card-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-main);
}

.photo-card-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Photo Gallery Grid */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-gallery-grid .featured-wide {
  grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   Screen Reader & Accessibility Utilities
   -------------------------------------------------------------------------- */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   15. HERO, COUNTDOWN, STATS, BADGES & INTERACTIVE COMPONENT STYLES
   -------------------------------------------------------------------------- */
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  background: var(--bg-body);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 25%, rgba(210, 13, 85, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(1, 51, 195, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(110, 47, 210, 0.22) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(242, 245, 251, 0.35) 0%, rgba(242, 245, 251, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--euro-accent-start);
  background: rgba(210, 13, 85, 0.08);
  border: 1px solid rgba(210, 13, 85, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-family-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--euro-accent-start);
  box-shadow: 0 0 8px rgba(210, 13, 85, 0.8);
  animation: pulse-dot 2s infinite ease-in-out;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.05;
  margin-bottom: var(--space-xs);
}

.hero-title-main {
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.hero-title-sub {
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--euro-accent-end);
  text-transform: uppercase;
  font-family: var(--font-family-mono);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

/* Countdown Section & Container */
.countdown-section {
  padding: var(--space-xl) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.countdown-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.countdown-title {
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  font-weight: 800;
  color: var(--text-main);
}

.countdown-tz-display {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--text-dim);
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 1.2vw, 0.75rem);
  margin: var(--space-sm) 0;
}

.countdown-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(0.85rem, 2vw, 1.6rem);
  min-width: clamp(68px, 12vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.countdown-card:hover {
  transform: translateY(-2px);
  border-color: var(--euro-accent-start);
}

.countdown-num {
  font-family: var(--font-family-display);
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.countdown-lbl,
.countdown-label {
  font-family: var(--font-family-mono);
  font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.72rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 0.35rem;
}

.countdown-divider {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.2rem);
  font-weight: 800;
  color: var(--euro-accent-start);
  opacity: 0.8;
  line-height: 1;
  user-select: none;
}

.countdown-tz-selector {
  display: inline-flex;
  gap: 0.3rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
}

.countdown-cal-cta {
  margin-top: var(--space-xs);
}

/* Stats Section & Grid */
.stats-section {
  padding: var(--space-lg) 0;
  background: var(--bg-frame);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-family: var(--font-family-display);
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.03em;
  display: block;
}

/* Stage Carousel Visuals */
.hero-stage-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: #07113f;
}

.hero-slide-figure {
  position: relative;
  margin: 0;
  width: 100%;
}

.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(180deg, transparent 0%, rgba(7, 17, 63, 0.9) 70%, #07113f 100%);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 600;
}



/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-family-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-spectrum {
  color: var(--euro-accent-start);
  background: rgba(210, 13, 85, 0.08);
  border: 1px solid rgba(210, 13, 85, 0.3);
}

.badge-cue {
  color: #8c7700;
  background: rgba(234, 219, 79, 0.15);
  border: 1px solid rgba(140, 119, 0, 0.25);
}

.badge-purple {
  color: var(--euro-accent-mid);
  background: rgba(110, 47, 210, 0.08);
  border: 1px solid rgba(110, 47, 210, 0.3);
}

/* Interactive Leaflet Local Map Card */
.venue-map-wrapper {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.venue-map-header {
  padding: 0.65rem 1rem;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.venue-map-title {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
}

.venue-map-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-family: var(--font-family-mono);
  color: var(--text-dim);
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--euro-accent-cue);
}

.status-indicator.live {
  background: var(--euro-accent-start);
  box-shadow: 0 0 6px rgba(210, 13, 85, 0.8);
  animation: pulse-dot 2s infinite ease-in-out;
}

.venue-map-container {
  height: 380px;
  min-height: 380px;
  width: 100%;
  flex: 1 1 auto;
  position: relative;
  background: var(--bg-surface-elevated);
}

.venue-map-footer {
  padding: 0.65rem 1rem;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-ext-link {
  color: var(--euro-accent-end);
  font-weight: 600;
  text-decoration: underline;
}

.map-ext-link:hover {
  color: var(--euro-accent-start);
}

/* Ticketing Callout Box */
.ticket-callout-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-left: 4px solid var(--euro-accent-start);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ticket-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(210, 13, 85, 0.15);
  border: 1px solid rgba(210, 13, 85, 0.4);
  color: #ff5e98;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.ticket-callout-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--space-xs);
}

.ticket-callout-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Alternative List & Summary Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--euro-accent-start);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md) var(--space-lg);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* Aspect Ratio Utilities */
.aspect-16-10 { aspect-ratio: 16 / 10; }
.aspect-16-9  { aspect-ratio: 16 / 9; }
.aspect-4-3   { aspect-ratio: 4 / 3; }
.aspect-3-2   { aspect-ratio: 3 / 2; }
.aspect-2-1   { aspect-ratio: 2 / 1; }

/* Surface Utilities */
.bg-surface { background-color: var(--bg-surface) !important; }
.bg-surface-card { background-color: var(--bg-surface-card) !important; }
.bg-surface-elevated { background-color: var(--bg-surface-elevated) !important; }

/* Announcement Utilities */
.top-announcement-text {
  font-weight: 500;
  color: var(--text-muted);
}

/* MyBurgas Card Body */
.myburgas-card-body {
  display: flex;
  flex-direction: column;
}

/* Venue Map Caption */
.venue-map-caption {
  font-size: var(--font-size-xs);
  color: var(--text-dim);
}

/* Interactive Filter & Row Hooks */
.schedule-filter-pill,
.timeline-filter-pill,
.country-filter-pill {
  user-select: none;
}

.schedule-row,
.country-row {
  transition: background var(--transition-fast);
}


/* Hero carousel pause/play control (WCAG 2.2.2 Pause, Stop, Hide) */
.hero-carousel-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}
.hero-carousel-toggle:hover { background: rgba(0, 0, 0, 0.7); }
.hero-carousel-toggle:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}
.hero-carousel-toggle .icon-play { display: none; }
.hero-carousel-toggle.is-paused .icon-pause { display: none; }
.hero-carousel-toggle.is-paused .icon-play { display: inline; }

/* Privacy / cookie policy page */
.policy {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}
.policy h1 { margin: 0 0 0.35rem; font-size: 1.9rem; line-height: 1.2; }
.policy-updated {
  margin: 0 0 2rem;
  font-size: 0.85rem;
  color: var(--text-muted, #4d5975);
}
.policy-section { margin: 0 0 1.75rem; }
.policy-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  line-height: 1.3;
}
.policy-section p {
  margin: 0 0 0.75rem;
  font-size: 0.94rem;
  line-height: 1.65;
}
.policy-section code {
  padding: 0.1em 0.35em;
  border-radius: 3px;
  background: var(--bg-frame, #dbe3f3);
  font-size: 0.88em;
}
