:root {
  color-scheme: dark;
  --bg: #06080f;
  --panel: #05060a;
  --text: #f4f1ea;
  --muted: #b9b2a8;
  --line: rgba(244, 241, 234, 0.14);
  --brand: #d98224;
  --display-font: "Russo One", Impact, "Arial Black", sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(217, 130, 36, 0.16) 0%, rgba(217, 130, 36, 0.08) 8rem, transparent 24rem),
    linear-gradient(180deg, #080a13 0%, var(--bg) 42%, #05060a 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.5;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(180deg, rgba(217, 130, 36, 0.08), transparent 34rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.018));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(217, 130, 36, 0.42);
  background: rgba(6, 8, 15, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.social-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.social-link {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  transition: transform 160ms ease, opacity 160ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}

.brand-mark {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.social-link img {
  display: block;
  width: 38px;
  height: 38px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.logo-link img {
  width: 44px;
  height: 44px;
  transform: translateY(1px);
}

.discord img {
  transform: translateY(2px);
}

.youtube img {
  width: 44px;
  height: 44px;
  transform: translateY(2px);
}

.twitch img {
  transform: translateY(1px);
}

.kick img {
  width: 33px;
  height: 37px;
  transform: translateY(1px);
}

.tiktok img {
  width: 48px;
  height: 48px;
  transform: translateY(1px);
}

main {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
}

.watch-section {
  width: min(1180px, calc(100% - 36px));
  padding: clamp(32px, 5vw, 70px) 0 54px;
}

.stream-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.stream-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  position: relative;
  display: flex;
  width: 100%;
  margin: 34px auto 0;
  padding: 18px 0 26px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(217, 130, 36, 0.42);
  color: var(--muted);
  font-family: var(--display-font);
  font-size: 1.25rem;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: -1;
  width: 100vw;
  height: 220px;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgba(217, 130, 36, 0.16), transparent 80%);
  pointer-events: none;
}

.copyright-mark {
  color: var(--brand);
}

.site-footer a {
  color: var(--text);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--brand);
}

@media (max-width: 880px) {
  .social-nav {
    gap: 34px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 64px;
    padding-block: 12px;
  }

  .header-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .social-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .social-link {
    width: 34px;
    height: 38px;
  }

  .social-link img {
    width: 34px;
    height: 34px;
  }

  .logo-link img,
  .youtube img {
    width: 38px;
    height: 38px;
  }

  .kick img {
    width: 31px;
    height: 35px;
  }

  .tiktok img {
    width: 42px;
    height: 42px;
  }

  .watch-section {
    width: min(100% - 28px, 1180px);
  }

  .site-footer {
    flex-wrap: wrap;
  }
}
