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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #000C38;
}

/* ---- Background ---- */

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.05);
}

.bg-fallback {
  opacity: 0;
}

.shader-loaded .bg-fallback {
  display: none;
}

.fallback-visible .bg-fallback {
  opacity: 1;
}

#bg-dither,
#bg-overlay-dither {
  opacity: 0;
}

.shader-loaded #bg-dither {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.shader-loaded #bg-overlay-dither {
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

#bg-overlay-dither {
  z-index: 0;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 12, 56, 0.3) 0%,
    rgba(0, 12, 56, 0.7) 100%
  );
}

/* ---- Content ---- */

.content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 40px 40px;
  gap: 24px;
}

/* ---- Left column (cover + title) ---- */

.left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cover {
  width: 260px;
  height: 260px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

/* ---- Title ---- */

.title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.title-block h1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.title-block p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Right column (links + socials) ---- */

.right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 310px;
}

/* ---- Streaming links ---- */

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  color: #fff;
  transition: background 160ms ease;
}

.link-row:hover {
  background: rgba(255, 255, 255, 0.18);
}

.link-row .link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.link-row span {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.link-row .chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Social icons ---- */

.socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 4px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transition: background 160ms ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.75);
}

/* ---- Desktop ---- */

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    min-height: 100vh;
    padding: 60px;
  }

  .cover {
    width: 340px;
    height: 340px;
  }

  .title-block h1 {
    font-size: 24px;
  }

  .title-block p {
    font-size: 15px;
  }

  .right-col {
    max-width: 380px;
  }
}
