:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #19202a;
  --muted: #516174;
  --line: #d8dfeb;
  --accent: #0d6b59;
  --accent-2: #f1bf70;
  --shadow: 0 18px 40px rgba(25, 32, 42, 0.09);
  --radius: 18px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Golos Text", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(241, 191, 112, 0.25) 0%, transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(13, 107, 89, 0.2) 0%, transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: #0b5ea8;
}

a:hover {
  color: #073e6f;
}

.hero {
  max-width: 1100px;
  margin: 32px auto 22px;
  padding: 0 20px;
}

.hero__inner {
  background: linear-gradient(136deg, #0e1f35 0%, #18435a 47%, #23604f 100%);
  border-radius: calc(var(--radius) + 6px);
  color: #f6f8fc;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__inner::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(241, 191, 112, 0.22);
}

.hero__eyebrow {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #c9d8ef;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Prata", "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 760px;
  margin: 0;
  color: #e5ebf6;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
  color: #1f1707;
  border-color: transparent;
}

.btn--solid {
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__image {
  width: 100%;
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}

.layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 36px;
  display: grid;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 18px rgba(25, 32, 42, 0.04);
}

.card h2 {
  margin: 0 0 12px;
  font-family: "Prata", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.card p {
  margin: 0 0 14px;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card li + li {
  margin-top: 7px;
}

.player-wrap {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f0f3f8;
}

.player-wrap iframe {
  width: 100%;
  min-height: 440px;
  display: block;
}

.platform-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 500;
  background: #fff;
}

.hosts-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.host {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #fbfcfe;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.host img {
  width: auto;
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
  margin: 0 auto 10px;
}

.host p {
  margin: 0 0 8px;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto 34px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 3px 0;
}

@media (max-width: 900px) {
  .hero__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hosts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 18px;
  }

  .hero__inner {
    padding: 20px;
  }

  .layout,
  .hero,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .card {
    padding: 16px;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosts-grid {
    grid-template-columns: 1fr;
  }

  .player-wrap iframe {
    min-height: 380px;
  }
}
