:root {
  --bg: #050607;
  --bg-soft: #111318;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f8f4ea;
  --muted: #c8d2d6;
  --accent: #ff6a18;
  --accent-hot: #ff2d2d;
  --accent-cool: #00e0d6;
  --accent-panda: #61d9ff;
  --border: rgba(216, 235, 235, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 106, 24, .20), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(0, 224, 214, .18), transparent 34%),
    radial-gradient(circle at 68% 76%, rgba(97, 217, 255, .10), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0, transparent 76%);
  opacity: .5;
  z-index: -1;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important; clip-path: none; display: block; height: auto; left: 12px; top: 12px; width: auto; z-index: 100000; padding: 10px 14px; background: #fff; color: #111; border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 7, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
}
.brand-logo, .custom-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(0,224,214,.28));
}
.brand span {
  background: linear-gradient(135deg, var(--accent-cool), var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.menu a,
.header-link {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  padding: 8px 10px;
  border-radius: 999px;
}
.menu a:hover, .header-link:hover { color: var(--text); background: rgba(255,255,255,.08); }
.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 6px 9px;
  cursor: pointer;
  font-weight: 800;
}
.lang-btn[aria-pressed="true"] {
  color: #04100f;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
}

.hero {
  min-height: calc(100svh - 74px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.98) 0%, rgba(5,6,7,.78) 48%, rgba(5,6,7,.34) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}
.hero-glow {
  position: absolute;
  inset: 12% auto auto 58%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,214,.28), transparent 60%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1;
}
.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 42px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-cool);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h2,
h3,
p { overflow-wrap: anywhere; }
h1 { overflow-wrap: normal; word-break: keep-all; }
h1 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5.8vw, 5.2rem);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-panda) 32%, var(--accent) 68%, var(--accent-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255,106,24,.22));
}
.tagline {
  margin: 0 0 20px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.35rem, 2.7vw, 2.45rem);
  line-height: 1.15;
  font-weight: 850;
}
.intro {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions,
.card-actions,
.age-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #04100f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent), var(--accent-hot));
  box-shadow: 0 18px 44px rgba(255,106,24,.22);
}
.button.ghost { color: var(--text); background: rgba(255,255,255,.07); }
.button.small { min-height: 40px; padding: 10px 14px; font-size: .78rem; }

.hub-panel {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.045)),
    rgba(0,0,0,.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hub-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-profile {
  min-height: 170px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  background-color: rgba(255,255,255,.06);
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mini-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
  z-index: -1;
}
.mini-profile span { display: inline-flex; margin-top: 96px; font-weight: 900; }

.section { padding: 88px 0; }
.section.dark {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading p:not(.section-kicker), .content-block p { color: var(--muted); }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.profile-link-card {
  position: relative;
  display: flex;
  min-height: 460px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.profile-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,224,214,.58);
  box-shadow: 0 26px 80px rgba(0,0,0,.44);
}
.profile-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--profile-image);
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
  transition: transform .45s ease;
  z-index: -2;
}
.profile-link-card:hover::before { transform: scale(1.075); }
.profile-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, var(--card-glow, rgba(0,224,214,.24)), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.91) 100%);
  z-index: -1;
}
.card-content {
  align-self: flex-end;
  width: 100%;
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(5,6,7,.50);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.profile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #04100f;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
  box-shadow: 0 8px 18px rgba(0,224,214,.16);
}
.profile-icon svg { width: 18px; height: 18px; }
.external-mark { color: var(--muted); font-weight: 900; }
.profile-link-card h3 {
  margin: 0 0 2px;
  font-size: 1.08rem;
  line-height: 1.05;
}
.profile-link-card .subtitle {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-panda);
  font-weight: 850;
  font-size: .92rem;
  line-height: 1.2;
}
.profile-link-card p { margin: 0 0 10px; color: var(--muted); font-size: .68rem; line-height: 1.28; }
.url-pill {
  display: inline-flex;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 8px;
  color: #fff;
  font-size: .68rem;
  background: rgba(255,255,255,.08);
}
.two-col {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: start;
}
.info-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 520px;
}
.info-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  background: var(--panel);
}
.info-card h3 { margin: 0 0 8px; }
.info-card p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; }
.footer-note { max-width: 720px; }

.age-gate[hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5, 6, 7, 0.88);
  backdrop-filter: blur(14px);
}
.age-card {
  width: min(530px, 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(17, 19, 24, .98), rgba(5, 6, 7, .98));
  box-shadow: var(--shadow);
  text-align: center;
}
.age-card img { margin-bottom: 10px; }
.age-card h2 { font-size: clamp(1.8rem, 6vw, 3.2rem); }
.age-card p { color: var(--muted); }
.age-actions { justify-content: center; }

.protected-media,
.profile-link-card,
.mini-profile {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.media-guard {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.media-guard::after {
  content: "© schmutzwuffel";
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(0,0,0,.42);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1050px) {
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hub-panel { max-width: 720px; justify-self: start; }
}
@media (max-width: 720px) {
  .nav-wrap { width: min(100% - 22px, var(--max)); min-height: 68px; }
  .brand span { font-size: .98rem; }
  .menu { display: none; }
  .header-link { display: none; }
  .hero { min-height: auto; padding: 72px 0 56px; }
  .hero-inner, .section-inner, .footer-inner { width: min(100% - 22px, var(--max)); }
  h1 { font-size: clamp(2.2rem, 10vw, 3.8rem); margin-bottom: 22px; white-space: nowrap; }
  .tagline { font-size: 1.35rem; }
  .profile-grid, .info-cards, .hub-panel-grid { grid-template-columns: 1fr; }
  .profile-link-card { min-height: 430px; }
  .section { padding: 64px 0; }
  .footer-inner { display: block; }
  .footer-inner p + p { margin-top: 10px; }
}
