:root {
  --text: #f4f0de;
  --muted: #bfb7a1;
  --gold: #d6ad41;
  --gold-soft: #f5e69b;
  --pink: #f44ca5;
  --blue: #5ecdfd;
  --lime: #e7f24f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 0;
  --radius-md: 0;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  background:
    radial-gradient(circle at top, rgba(214, 173, 65, 0.18), transparent 30%),
    linear-gradient(180deg, #131114 0%, #090909 56%, #050505 100%);
  overflow-x: hidden;
  position: relative;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: #080808;
  background: var(--gold-soft);
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-background__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite;
}

.site-background__halo--gold {
  width: 38rem;
  height: 38rem;
  top: -14rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(214, 173, 65, 0.36) 0%, rgba(214, 173, 65, 0.04) 68%, transparent 100%);
}

.site-background__halo--pink {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  top: 22rem;
  background: radial-gradient(circle, rgba(244, 76, 165, 0.26) 0%, rgba(94, 205, 253, 0.05) 70%, transparent 100%);
  animation-delay: -6s;
}

.site-background__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 96%);
}

.shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8, 8, 10, 0.32);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.9rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, rgba(244, 76, 165, 0.3), rgba(214, 173, 65, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(214, 173, 65, 0.26);
  color: #1a1506;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__text strong,
.eyebrow,
.button,
.account-box__step,
.account-box__meta strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.08em;
}

.brand__text strong {
  font-size: 0.94rem;
  text-transform: uppercase;
}

.brand__text small,
.topbar__link {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar__link {
  position: absolute;
  right: 0;
}

.topbar__link:hover,
.topbar__link:focus-visible {
  color: var(--text);
}

.site-main {
  padding: 1.35rem 0 4rem;
}

.link-hub {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

.link-hub__header,
.account-box,
.privacy-card,
.status-banner {
  animation: rise-in 0.7s ease forwards;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.94rem;
}

.link-hub__header {
  display: grid;
  gap: 0.95rem;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.link-hub__header h1,
.section-heading h1 {
  margin: 0;
  max-width: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-brand {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 173, 65, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.86), rgba(8, 8, 10, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero-brand__logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  transform: rotate(var(--hero-tilt, 0deg)) scale(1);
  transform-origin: center;
  transition: transform 0.28s ease, filter 0.28s ease;
  will-change: transform;
}

.hero-brand__logo:hover,
.hero-brand__logo:focus-visible {
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.52));
  transform: rotate(calc(var(--hero-tilt, 0deg) + 3deg)) scale(1.06);
}

.hero-brand__logo--left {
  max-width: 25rem;
  justify-self: end;
}

.hero-brand__logo--right {
  max-width: 18rem;
  justify-self: start;
  margin-left: -27px;
}

.hero-brand__cross {
  color: var(--gold-soft);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1;
  text-shadow:
    0 0 18px rgba(245, 230, 155, 0.32),
    0 12px 30px rgba(0, 0, 0, 0.4);
  margin-right: 66px;
}

.status-stack {
  display: grid;
  gap: 0.75rem;
}

.status-banner {
  padding: 1rem 1.2rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.status-banner--success {
  color: #effce8;
  background: linear-gradient(180deg, rgba(44, 86, 33, 0.95), rgba(19, 44, 17, 0.92));
}

.status-banner--error {
  color: #ffe8e8;
  background: linear-gradient(180deg, rgba(109, 32, 42, 0.96), rgba(60, 18, 25, 0.92));
}

.link-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.account-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 22rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(8, 8, 10, 0.92));
  box-shadow: var(--shadow);
}

.account-box::before {
  content: none;
}

.account-box--steam {
  background:
    radial-gradient(circle at bottom, rgba(231, 242, 79, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(8, 8, 10, 0.92));
}

.account-box--kick {
  background:
    radial-gradient(circle at bottom, rgba(244, 76, 165, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(8, 8, 10, 0.92));
}

.account-box--linked {
  border-color: rgba(231, 242, 79, 0.22);
  box-shadow: 0 22px 70px rgba(214, 173, 65, 0.18);
}

.account-box--eligible {
  border-color: rgba(94, 205, 253, 0.26);
  box-shadow: 0 22px 70px rgba(94, 205, 253, 0.18);
}

.account-box > * {
  position: relative;
  z-index: 1;
}

.account-box__step {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 0;
  color: #111;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 14px 24px rgba(214, 173, 65, 0.3);
  text-transform: uppercase;
}

.account-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 6.4rem;
  min-height: 4.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 32px rgba(0, 0, 0, 0.35);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
}

.account-box--steam .account-box__icon {
  color: #111;
  background: linear-gradient(135deg, var(--lime), var(--gold));
}

.account-box--kick .account-box__icon {
  color: white;
  background: linear-gradient(135deg, #ff71c1, #ae2f92);
}

.account-box h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-box p,
.privacy-card__row span,
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-box p strong {
  color: var(--text);
}

.account-box__details {
  display: grid;
  gap: 0.45rem;
}

.account-box__detail {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.account-box__detail span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-box__detail strong {
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-align: right;
  overflow-wrap: anywhere;
}

.account-box__note {
  color: var(--text);
  font-size: 0.95rem;
}

.account-box__meta,
.privacy-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-box__meta span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.account-box__meta strong {
  max-width: 14rem;
  text-align: right;
  overflow-wrap: anywhere;
}

.account-box__form {
  margin-top: auto;
}

.kick-form,
.follow-prompt {
  display: grid;
  gap: 0.9rem;
}

.kick-form {
  margin-top: auto;
}

.kick-form__label,
.follow-prompt__title {
  color: var(--text);
  font-size: 0.95rem;
}

.kick-form__input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.kick-form__input::placeholder {
  color: rgba(191, 183, 161, 0.72);
}

.kick-form__input:focus {
  border-color: rgba(245, 230, 155, 0.7);
  box-shadow: 0 0 0 3px rgba(245, 230, 155, 0.14);
}

.follow-prompt {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.follow-prompt__title {
  margin: 0;
}

.live-chat {
  display: grid;
  gap: 0.85rem;
  margin-top: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-chat--embedded {
  margin-top: 0.15rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.live-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.live-chat__header strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-chat__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-chat__status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.live-chat__status[data-state="live"]::before {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(231, 242, 79, 0.65);
}

.live-chat__status[data-state="reconnecting"]::before,
.live-chat__status[data-state="connecting"]::before {
  background: var(--gold);
}

.live-chat__status[data-state="error"]::before {
  background: #ff6b6b;
}

.live-chat__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-chat__item,
.live-chat__empty {
  padding: 0.8rem 0.9rem;
  border-radius: 0;
  background: rgba(8, 8, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-chat__item--self {
  border-color: rgba(94, 205, 253, 0.34);
  box-shadow: 0 0 0 1px rgba(94, 205, 253, 0.14);
}

.live-chat__item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.live-chat__username {
  color: var(--gold-soft);
  font-size: 0.94rem;
}

.live-chat__time {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.live-chat__message,
.live-chat__empty {
  margin: 0;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}

.account-box__button {
  width: 100%;
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.button--accent {
  color: #111;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 16px 30px rgba(214, 173, 65, 0.24);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.section {
  display: grid;
  gap: 1.5rem;
}

.section-heading {
  max-width: 46rem;
}

.privacy-card {
  display: grid;
  gap: 0.9rem;
  max-width: 56rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 15, 19, 0.96), rgba(9, 9, 11, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .account-box__meta,
  .privacy-card__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-hub__grid {
    grid-template-columns: 1fr;
  }

  .link-hub__header h1,
  .section-heading h1 {
    max-width: none;
    font-size: clamp(1.4rem, 7.2vw, 2rem);
  }

  .account-box__meta strong {
    text-align: left;
  }

  .topbar__content {
    min-height: 3.4rem;
  }

  .topbar__link {
    position: static;
  }

  .account-box__detail,
  .live-chat__header,
  .live-chat__item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1rem;
  }

  .hero-brand__logo--left,
  .hero-brand__logo--right {
    justify-self: center;
    max-width: min(100%, 18rem);
    margin-left: -24px;
  }

  .hero-brand__cross {
    font-size: 2.5rem;
  }

  .account-box__detail strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
