﻿:root {
  color-scheme: dark;
  --bg: #0b0d11;
  --bg-alt: #10141c;
  --surface: rgba(18, 22, 32, 0.78);
  --surface-solid: #141925;
  --text: #f5f7fb;
  --muted: #b7c0d1;
  --accent: #32f5d1;
  --accent-strong: #25c9ff;
  --accent-glow: rgba(50, 245, 209, 0.28);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 60px rgba(5, 8, 12, 0.55);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 520px;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --font-serif: "Playfair Display", "Prata", "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Display", "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, rgba(50, 245, 209, 0.12), transparent 55%),
    radial-gradient(circle at 10% 30%, rgba(37, 201, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #07090f 0%, #0b0d11 45%, #0b0d11 100%);
  color: var(--text);
  letter-spacing: 0.2px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: calc(16px + var(--safe-top)) 16px calc(40px + var(--safe-bottom));
}

.hero {
  position: relative;
  min-height: clamp(200px, 30vh, 280px);
  border-radius: var(--radius);
  overflow: hidden;
  background-image: url("public_assets/header_image_cropped.jpg");
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
  padding: 24px 20px 88px;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.1) 0%, rgba(7, 9, 15, 0.45) 40%, rgba(7, 9, 15, 0.85) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(50, 245, 209, 0.25), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
}

.tagline {
  margin: 0;
  font-size: clamp(1rem, 3.4vw, 1.15rem);
  color: var(--muted);
  max-width: 100%;
  white-space: normal;
  word-break: keep-all;
}

.card {
  position: relative;
  margin-top: -32px;
  align-self: center;
  width: min(100%, var(--max-width));
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  z-index: 2;
}

.avatar-wrap {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(50, 245, 209, 0.5), rgba(37, 201, 255, 0.5));
  padding: 4px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  z-index: 3;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.status-dot {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  border: 2px solid #0b0d11;
}

.status-dot.is-live {
  background: #6dffe6;
  box-shadow: 0 0 18px rgba(109, 255, 230, 0.75), 0 0 32px rgba(50, 245, 209, 0.5);
}

.card__body {
  padding: 84px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.identity {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.handle {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
}

.bio {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.schedule {
  align-self: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(9, 13, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.handle-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.marquee__window {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 10px 0;
}

.marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 16s linear infinite;
}

.marquee__text {
  font-size: clamp(0.78rem, 2.6vw, 0.95rem);
  font-weight: 600;
  color: rgba(120, 255, 230, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 18px;
}

.marquee__tagline {
  margin: 0;
  text-align: center;
  font-size: clamp(0.85rem, 2.8vw, 1rem);
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
}

.share-row {
  display: flex;
  justify-content: center;
  margin-top: -4px;
}

.share-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.82rem;
  cursor: pointer;
  min-height: 36px;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
}

.share-btn:hover,
.share-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(50, 245, 209, 0.5);
}

.copy-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.84rem;
  cursor: pointer;
  min-height: 40px;
  transition: transform 0.2s ease, border 0.2s ease;
  backdrop-filter: blur(10px);
}

.copy-btn:hover,
.copy-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(50, 245, 209, 0.5);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.live-note {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.link-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 1rem;
  min-height: 56px;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(50, 245, 209, 0.55);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.link-btn:active {
  transform: translateY(1px) scale(0.99);
  border-color: rgba(50, 245, 209, 0.75);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.link-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.link-btn.is-live {
  border-color: rgba(50, 245, 209, 0.45);
  box-shadow: 0 8px 18px rgba(50, 245, 209, 0.12);
}

.link-btn.is-disabled:hover,
.link-btn.is-disabled:focus-visible,
.link-btn.is-disabled:active {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(50, 245, 209, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.link-text {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.link-label {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 18, 0.7);
  letter-spacing: 0.4px;
  text-transform: none;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-meta__icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-meta__icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.link-meta--muted {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.16);
}

.link-meta--accent {
  color: #c9fff2;
  border-color: rgba(50, 245, 209, 0.5);
  background: rgba(20, 30, 36, 0.85);
  box-shadow: inset 0 0 0 1px rgba(50, 245, 209, 0.18);
}

.link-meta--highlight {
  color: #041014;
  border: none;
  background: linear-gradient(135deg, #4fffe0, #2ac7ff);
  box-shadow: 0 8px 18px rgba(50, 245, 209, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.link-arrow {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.link-btn.is-disabled .link-arrow {
  color: rgba(255, 255, 255, 0.35);
  transform: none;
}

.link-btn:hover .link-arrow,
.link-btn:focus-visible .link-arrow,
.link-btn:active .link-arrow {
  transform: translateX(4px);
}

.link-btn.is-disabled:hover .link-arrow,
.link-btn.is-disabled:focus-visible .link-arrow,
.link-btn.is-disabled:active .link-arrow {
  transform: none;
}

.promos {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center 20%;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery__item:first-child {
  transform: translateY(-4px);
}

.gallery__item:last-child {
  transform: rotate(1.2deg) translateY(6px);
}

.gallery__item:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.55), 0 0 18px rgba(50, 245, 209, 0.18);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.note {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.about {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  max-width: 420px;
  align-self: center;
}

.about h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-serif);
  letter-spacing: 0.4px;
}

.about p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.divider {
  color: rgba(255, 255, 255, 0.3);
}

.toast {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(12, 16, 24, 0.9);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  display: grid;
  place-items: center;
  gap: 12px;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  background: rgba(10, 12, 18, 0.8);
}

.lightbox__caption {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -12px;
  right: -6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 16, 24, 0.9);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 16, 24, 0.85);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: -10px;
}

.lightbox__nav--next {
  right: -10px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .page {
    padding: calc(32px + var(--safe-top)) 24px calc(48px + var(--safe-bottom));
    align-items: center;
  }

  .hero {
    width: min(100%, 880px);
    min-height: clamp(260px, 40vh, 360px);
    padding-bottom: 112px;
  }

  .card {
    margin-top: -64px;
  }

  .gallery__item img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee__track {
    animation: none;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: float-in 0.8s ease both;
  }

  .link-btn {
    animation: rise-in 0.8s ease both;
  }

  .link-btn:nth-child(2) {
    animation-delay: 0.05s;
  }

  .link-btn:nth-child(3) {
    animation-delay: 0.1s;
  }

  .link-btn:nth-child(4) {
    animation-delay: 0.15s;
  }

  .link-btn:nth-child(5) {
    animation-delay: 0.2s;
  }

  .link-btn:nth-child(6) {
    animation-delay: 0.25s;
  }

  .lightbox__image {
    animation: lightbox-in 0.25s ease;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
