:root {
  --midnight: #0a0f1f;
  --navy: #16213f;
  --sky: #3e6ee6;
  --amber: #ffb347;
  --slate: #f4f5f7;
  --text: #1f2430;
  --muted: #6a7286;
  --radius: 1rem;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--slate);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90vw);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 15, 31, 0.9), rgba(22, 33, 63, 0.85)),
    url("img/studio.jpg") center/cover;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(62, 110, 230, 0.5), rgba(255, 179, 71, 0.4));
}

.hero__content {
  position: relative;
  z-index: 1;
}

.site-player {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 31, 0.95);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(10, 15, 31, 0.3);
  backdrop-filter: blur(10px);
}

.site-player__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.site-player__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-player__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex: 1;
}

.site-player__info .stream__title {
  margin: 0;
  font-weight: 600;
}

.site-player__info .stream__status {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-player__volume {
  min-width: 180px;
}

.hero__logo {
  width: clamp(110px, 18vw, 200px);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: "Oswald", "Inter", sans-serif;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero__text {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 150ms ease, background 150ms ease;
}

.btn--primary {
  background: var(--amber);
  color: #212121;
}

.btn--ghost {
  border-color: #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 2;
  background: var(--slate);
  margin-top: -4rem;
  border-radius: var(--radius) var(--radius) 0 0;
  padding-bottom: 4rem;
}

.content-block {
  padding: 4rem 0;
}

.content-block--alt {
  background: #fff;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.player-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--amber);
  color: var(--midnight);
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 150ms ease, opacity 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.player-btn--secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.player-btn:hover {
  transform: translateY(-2px);
}

.stream__status {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.volume-control {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.volume-control input[type="range"] {
  accent-color: var(--amber);
}

@media (max-width: 768px) {
  .site-player__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-player__volume {
    width: 100%;
  }
}

.hosts {
  display: grid;
  gap: 3rem;
}

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

.host-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(10, 15, 31, 0.08);
}

.host-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--radius) - 0.5rem);
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  filter: grayscale(0.2);
}

.host-card__img--1 {
  background-image: linear-gradient(120deg, rgba(62, 110, 230, 0.3), rgba(255, 179, 71, 0.35)),
    url("img/host-1.jpg");
}

.host-card__img--2 {
  background-image: linear-gradient(120deg, rgba(62, 110, 230, 0.3), rgba(255, 179, 71, 0.35)),
    url("img/host-2.jpg");
}

.host-card__img--3 {
  background-image: linear-gradient(120deg, rgba(62, 110, 230, 0.3), rgba(255, 179, 71, 0.35)),
    url("img/host-3.jpg");
}

.contact {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact__form input,
.contact__form textarea {
  border: 1px solid #d8dbe2;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font: inherit;
}

.contact__status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: var(--midnight);
  color: #fff;
  padding: 2rem 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: 1fr 1fr;
  }
}
