:root {
  color-scheme: dark;
  --red: #e20d24;
  --bg: #070707;
  --card: #111;
  --line: #303030;
  --muted: #aaa49d;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #f6f2ec;
  background:
    radial-gradient(circle at 15% 0, #360712, transparent 30%), var(--bg);
  font:
    17px/1.6 system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
.hub-top {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px clamp(20px, 6vw, 88px);
  border-bottom: 1px solid #292929;
}
.hub-top a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-brand {
  font-size: 1.35rem !important;
}
.hub-brand strong {
  color: var(--red);
}
main {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.hub-hero {
  padding: clamp(65px, 10vw, 125px) 0 70px;
}
.hub-hero p,
.clip-copy small {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hub-hero h1 {
  margin: 18px 0;
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.76;
  letter-spacing: -0.065em;
}
.hub-hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hub-hero > span {
  display: block;
  max-width: 690px;
  color: var(--muted);
}
.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 90px;
}
.clip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  transition: 0.2s;
}
.clip-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.clip-card img {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  background: #1a1a1a;
}
.clip-copy {
  padding: 24px;
}
.clip-copy h2 {
  margin: 9px 0;
  font-size: 1.45rem;
  line-height: 1.08;
}
.clip-copy p {
  margin: 0;
  color: var(--muted);
}
.empty {
  padding: 60px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.clip-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 35px;
  padding: 55px 0 90px;
}
.clip-player {
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid var(--line);
}
.clip-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.clip-player > img,
.clip-consent,
.clip-consent > img {
  width: 100%;
  height: 100%;
}
.clip-player > img,
.clip-consent > img {
  display: block;
  object-fit: cover;
}
.clip-consent {
  position: relative;
  overflow: hidden;
}
.clip-consent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5));
}
.clip-consent > div {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 620px;
  padding: clamp(24px, 5vw, 58px);
}
.clip-consent strong {
  font-size: clamp(1.35rem, 3vw, 2.5rem);
}
.clip-consent p {
  margin: 8px 0 20px;
  color: #d2ccc4;
}
.clip-consent button {
  border: 0;
  padding: 13px 18px;
  color: #fff;
  background: var(--red);
  font: 900 0.78rem/1.2 system-ui, sans-serif;
  cursor: pointer;
}
.clip-consent a {
  margin-top: 12px;
  color: #d2ccc4;
  font-size: 0.68rem;
}
.clip-detail h1 {
  margin: 12px 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.85;
  letter-spacing: -0.055em;
}
.clip-detail p {
  color: var(--muted);
}
.clip-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 13px 18px;
  background: var(--red);
  text-decoration: none;
  font-weight: 900;
}
.hub-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 6vw, 88px);
  border-top: 1px solid #292929;
  color: var(--muted);
  font-size: 0.78rem;
}
.hub-footer div {
  display: flex;
  gap: 18px;
}
@media (max-width: 850px) {
  .clip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .clip-detail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .clip-grid {
    grid-template-columns: 1fr;
  }
  .hub-top nav {
    display: none;
  }
  .hub-footer {
    flex-direction: column;
  }
}
