body {
  min-height: 100vh;
}

/* ─── MAIN LAYOUT ─── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
}

/* ─── PROFILE HEADER ─── */
.profile {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease both;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--surface);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.2),
    0 0 60px rgba(0, 229, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.profile-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), transparent 60%);
}

.profile-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
  line-height: 1;
  margin: 0;
}

.profile-name .accent-z {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.35);
}

.profile-bio {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

.profile-bio span {
  color: var(--accent2);
}

/* LIVE BADGE */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--muted);
  color: var(--muted);
  transition:
    border-color 0.4s,
    color 0.4s;
}

.live-badge.is-live {
  border-color: #22ff88;
  color: #22ff88;
}

.live-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.4s;
}

.live-badge.is-live .badge-dot {
  background: #22ff88;
  animation: pulse-dot 1.8s infinite;
}

/* ─── LINKS CONTAINER ─── */
.links-container {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.link-category {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0 0.2rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.link-category:first-child {
  border-top: none;
  margin-top: 0;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: none;
}

.link-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--item-color, var(--accent)),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--item-color, var(--accent));
  transform: translateY(-2px);
}

.link-item:hover::before {
  opacity: 0.07;
}

.link-item-icon {
  font-size: 1.3rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  color: var(--item-color, var(--accent));
}

.link-item-icon svg {
  width: 1em;
  height: 1em;
}

.link-item-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.link-item-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

.link-item-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.18rem;
}

.link-item-arrow {
  font-size: 0.9rem;
  color: var(--muted);
  transition:
    transform 0.2s,
    color 0.2s;
  position: relative;
  z-index: 1;
}

.link-item-arrow svg {
  width: 1em;
  height: 1em;
  display: block;
}

.link-item:hover .link-item-arrow {
  transform: translate(3px, -3px);
  color: var(--item-color, var(--accent));
}

.link-item.donate-item {
  border-color: rgba(255, 60, 110, 0.3);
  background: rgba(255, 60, 110, 0.04);
}

.link-item.donate-item:hover {
  border-color: var(--accent2);
  background: rgba(255, 60, 110, 0.1);
}

/* ─── AD SLOT ─── */
.ad-slot {
  width: 100%;
  max-width: 560px;
  margin-top: 1.5rem;
}
