@font-face {
  font-family: Inter;
  src: url("../fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #131316;
  --surface-2: #1a191e;
  --line: rgba(255, 255, 255, .15);
  --text: #fff;
  --muted: #c8c3ca;
  --quiet: #8f8993;
  --accent: #ff3d8d;
  --accent-bright: #ff83b7;
  --accent-rgb: 255, 61, 141;
  --signal: #dfff62;
  --online: #69f3a6;
  --radius: 6px;
}

body.theme-neon-circuit {
  --bg: #09090b;
  --surface: #131316;
  --surface-2: #1a191e;
  --accent: #ff3d8d;
  --accent-bright: #ff83b7;
  --accent-rgb: 255, 61, 141;
  --signal: #dfff62;
}

body.theme-holo-pink {
  --bg: #0e090d;
  --surface: #171015;
  --surface-2: #21171e;
  --accent: #ff66ad;
  --accent-bright: #ff9bca;
  --accent-rgb: 255, 102, 173;
  --signal: #86f2e5;
}

body.theme-ice-chrome {
  --bg: #071011;
  --surface: #10191b;
  --surface-2: #182427;
  --accent: #6ce7ee;
  --accent-bright: #a9f9ff;
  --accent-rgb: 108, 231, 238;
  --signal: #ff7fab;
}

body.theme-solar-pulse {
  --bg: #100c09;
  --surface: #19120e;
  --surface-2: #251a13;
  --accent: #ff7147;
  --accent-bright: #ffa083;
  --accent-rgb: 255, 113, 71;
  --signal: #f5e25d;
}

body.theme-custom {
  --surface: var(--panel, #131316);
  --surface-2: var(--modal-panel, #1a191e);
  --line: var(--border, rgba(255, 255, 255, .15));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.livestream-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, .92);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  height: 68px;
  margin: 0 auto;
}

.creator-brand,
.footer-brand {
  font-size: 15px;
  font-weight: 900;
}

.creator-brand::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.header-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.live-dot,
.online-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 4px rgba(105, 243, 166, .13);
  animation: live-pulse 1.6s infinite;
}

.profile-section {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  width: min(1240px, calc(100% - 48px));
  min-height: 350px;
  margin: 24px auto 0;
  padding: 44px 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.profile-avatar-wrap {
  position: relative;
  width: 180px;
  aspect-ratio: 1;
}

.profile-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
}

.profile-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(var(--accent-rgb), .62);
  border-radius: 50%;
  pointer-events: none;
}

.avatar-status {
  position: absolute;
  right: -8px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0b0b0d;
  color: var(--text);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content {
  min-width: 0;
}

.site-eyebrow,
.section-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.creator-name {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 0;
  font-size: 56px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.creator-name span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.creator-name img {
  width: 30px;
  margin-top: 5px;
}

.profile-subtitle {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.stats-row > span + span::before {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 16px;
  background: var(--line);
}

.stats-row strong {
  margin-right: 5px;
  color: var(--text);
  font-size: 15px;
}

.country-badge img {
  width: 20px;
  margin-right: 7px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.live-strip-action,
.gallery-link,
.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.primary-action {
  gap: 18px;
  min-width: 205px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #18070f;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(8, 8, 10, .26);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.primary-action:hover,
.secondary-action:hover,
.gallery-link:hover,
.join-button:hover {
  transform: translateY(-2px);
}

.primary-action:hover,
.join-button:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.secondary-action:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.live-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1240px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.live-strip-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
}

.live-strip-status .live-dot {
  background: #ff245f;
  box-shadow: 0 0 0 4px rgba(255, 36, 95, .15);
}

.live-strip-copy strong,
.live-strip-copy span {
  display: block;
}

.live-strip-copy strong {
  font-size: 18px;
}

.live-strip-copy span {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 12px;
}

.live-strip-action {
  gap: 18px;
  min-height: 38px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--accent-bright);
}

.live-strip-action:hover {
  transform: none;
  border-color: #fff;
  color: #fff;
}

.gallery-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0px 0 96px;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-kicker {
  color: var(--accent);
}

.gallery-heading h2 {
  margin: 7px 0 0;
  font-size: 42px;
  line-height: 1;
}

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-updated {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 900;
}

.gallery-link {
  gap: 14px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 10px;
}

.gallery-link:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 302px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item::after {
  content: "VIEW";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .68);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:nth-child(1) > img {
  object-position: center 25%;
}

.gallery-item:hover > img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: none;
}

.gallery-item-locked::after {
  display: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 10, .58);
  backdrop-filter: blur(7px);
}

.gallery-overlay img {
  width: 54px;
}

.gallery-overlay strong {
  margin-top: 13px;
  font-size: 12px;
}

.gallery-overlay small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 48px));
  min-height: 96px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: var(--quiet);
  font-size: 10px;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  margin: 0;
  color: var(--quiet);
  font-size: 9px;
  text-align: right;
}

.modal,
.livestream-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open,
.livestream-panel.is-open {
  display: flex;
}

.modal-backdrop,
.livestream-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .84);
  backdrop-filter: blur(14px);
}

.modal-dialog,
.livestream-dialog {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .62);
  animation: dialog-in .22s ease both;
}

.modal-close,
.livestream-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(0, 0, 0, .58);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-body {
  padding: 36px 24px 24px;
  text-align: center;
}

.modal-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-body h2 {
  margin: 8px 36px 12px;
  font-size: 30px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.modal-lead {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.modal-steps {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.modal-image-link {
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.modal-image-link img {
  display: block;
  width: 100%;
}

.join-button {
  width: 100%;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #18070f;
}

.livestream-dialog {
  width: min(920px, 100%);
}

.livestream-panel-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #050506;
}

.livestream-panel-video,
.livestream-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center 28%;
  background-size: cover;
  filter: blur(17px) saturate(.8) brightness(.48);
  transform: scale(1.08);
}

.livestream-panel-blur {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
}

.live-kicker {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  font-size: 9px;
  font-weight: 900;
}

.livestream-panel-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.livestream-panel-lock > img {
  width: 68px;
}

.livestream-panel-lock h2 {
  margin: 18px 0 0;
  font-size: 32px;
}

.livestream-panel-lock p {
  max-width: 410px;
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.livestream-unlock {
  width: min(290px, 100%);
}

.header-live:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.live-strip-action:focus-visible,
.gallery-link:focus-visible,
.gallery-item:focus-visible,
.modal-close:focus-visible,
.join-button:focus-visible,
.livestream-panel-close:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(105, 243, 166, .42); }
  70% { box-shadow: 0 0 0 7px rgba(105, 243, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(105, 243, 166, 0); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .profile-section,
  .live-strip,
  .gallery-section,
  .site-header-inner,
  .footer-inner {
    width: min(760px, calc(100% - 32px));
  }

  .profile-section {
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 34px;
    min-height: 320px;
    padding: 36px 28px;
  }

  .profile-avatar-wrap {
    width: 150px;
  }

  .creator-name {
    font-size: 46px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 500px 330px 330px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 640px) {
  html,
  body,
  main,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .site-header-inner {
    width: 100%;
    max-width: 100%;
    height: 60px;
    padding-right: 14px;
    padding-left: 14px;
    overflow: hidden;
  }

  .creator-brand {
    font-size: 13px;
  }

  .profile-section {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    display: block;
    min-height: 0;
    padding: 22px 18px 18px;
    overflow: hidden;
    text-align: center;
  }

  .profile-avatar-wrap {
    width: 112px;
    margin: 0 auto;
  }

  .avatar-status {
    right: -13px;
    bottom: 3px;
    min-height: 27px;
    padding: 0 8px;
    font-size: 8px;
  }

  .site-eyebrow {
    display: none;
  }

  .creator-name {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 28px;
  }

  .creator-name img {
    width: 22px;
  }

  .profile-subtitle {
    max-width: 400px;
    margin-top: 12px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .stats-row {
    justify-content: center;
    margin-top: 16px;
  }

  .country-badge {
    display: none !important;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    margin-top: 18px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 12px;
    font-size: 11px;
  }

  .secondary-action {
    min-height: 40px;
    border: 0;
    background: transparent;
    color: var(--muted);
  }

  .secondary-action:hover {
    background: transparent;
    color: #fff;
  }

  .live-strip {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 60px;
    padding: 12px 18px;
    overflow: hidden;
  }

  .live-strip-status {
    grid-row: auto;
    align-self: center;
    margin-top: 0;
  }

  .live-strip-copy {
    display: none;
  }

  .live-strip-action {
    grid-column: 2;
    justify-self: end;
    width: auto;
    min-height: 32px;
    font-size: 9px;
  }

  .gallery-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 0 72px;
    overflow: hidden;
  }

  .gallery-header {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 0 18px;
    overflow: hidden;
  }

  .gallery-heading h2 {
    font-size: 34px;
  }

  .gallery-actions {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .gallery-updated {
    display: none;
  }

  .gallery-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 3px;
    overflow: hidden;
  }

  .gallery-item {
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .livestream-panel-stage {
    min-height: min(620px, calc(100svh - 40px));
  }

  .livestream-panel-lock {
    padding: 28px;
  }

  .livestream-panel-lock h2 {
    font-size: 25px;
  }

  .modal,
  .livestream-panel {
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .live-strip,
  .footer-inner {
    width: 100%;
  }

  .profile-section {
    width: 100%;
    margin-top: 0;
  }

  .live-strip {
    width: 100%;
  }

  .stats-row > span + span::before {
    margin: 0 11px;
  }

  .footer-links {
    gap: 10px 14px;
  }

  .modal-body {
    padding: 34px 16px 16px;
  }
}

@media (max-width: 360px) {
  .site-header-inner {
    width: 100%;
  }

  .creator-brand {
    min-width: 0;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .header-live {
    flex: 0 0 auto;
    gap: 6px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 9px;
  }

  .profile-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .profile-avatar-wrap {
    width: 96px;
  }

  .creator-name {
    gap: 7px;
    font-size: 26px;
  }

  .creator-name span {
    max-width: calc(100% - 26px);
  }

  .creator-name img {
    width: 19px;
  }

  .profile-subtitle {
    font-size: 12px;
  }

  .stats-row {
    font-size: 8px;
  }

  .stats-row strong {
    font-size: 13px;
  }

  .stats-row > span + span::before {
    margin: 0 8px;
  }

  .primary-action {
    min-height: 48px;
  }

  .live-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-right: 12px;
    padding-left: 12px;
  }

  .live-strip-status {
    grid-row: auto;
    align-self: center;
    margin-top: 0;
  }

  .live-strip-action {
    grid-column: 2;
    justify-self: end;
  }

  .gallery-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 12px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-actions {
    justify-content: flex-start;
  }

  .gallery-link {
    min-height: 32px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
}

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