:root {
  --ey-yellow: #f6c90e;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --shadow: 0 15px 40px rgba(0,0,0,0.25);
  --gradient: linear-gradient(135deg, rgba(246,201,14,0.15), rgba(255,255,255,0.05));
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

.hero-section {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: var(--gradient);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Russo One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--ey-yellow);
}

.hero-section .subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.hero-section .breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-section .breadcrumb a {
  color: var(--ey-yellow);
}

.hero-section .breadcrumb a:hover {
  color: #fff;
}

.block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--dark-card);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
  align-items: center;
}

.block:hover {
  transform: translateY(-8px);
}

.block.reverse .media {
  order: 2;
}
.block.reverse .info {
  order: 1;
}

.block .media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: none;
}

.block .info h3 {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.block .info p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.block .info .fst-italic {
  font-style: italic;
  color: var(--text-muted);
}

.block ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.block ul li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ey-yellow);
  font-weight: bold;
}

footer {
  background: var(--dark-card);
  color: var(--text-muted);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
  color: var(--ey-yellow);
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .block {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .block.reverse .media,
  .block.reverse .info {
    order: initial;
  }
  .hero-section {
    padding: 4rem 1.5rem 3rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .block {
    padding: 1.5rem;
  }
  .block .info h3 {
    font-size: 1.4rem;
  }
}
