:root{
  --card-bg: rgba(255,255,255,0.08);
  --card-bg-hover: rgba(255,255,255,0.16);
  --card-border: rgba(255,255,255,0.18);
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.68);
  --footer-h: 52px;
}

*{ box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html{
  margin:0;
  padding:0;
  min-height: 100%;
  background:#0a0a0c;
}

body{
  margin:0;
  padding:0;
  min-height: 100dvh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  display:flex;
  justify-content:center;
  position: relative;
  overflow-x: hidden;
  background: transparent;
}

/* Background photo, shared across all pages */
.bg{
  position: fixed;
  inset: 0;
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.03);
  z-index: -3;
}

.bg-overlay{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(10,10,15,0.15) 0%, rgba(8,8,12,0.55) 45%, rgba(6,6,9,0.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.9) 100%);
  z-index: -2;
}

.glow{
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.glow--a{ width: 260px; height: 260px; background: #7c5cff; top: -60px; left: -60px; }
.glow--b{ width: 300px; height: 300px; background: #ff5c8a; bottom: -80px; right: -60px; animation-delay: -6s; }

@keyframes float{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(20px,-24px) scale(1.08); }
}

@keyframes rise{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ---------- Home / link page ---------- */

.wrap{
  width:100%;
  max-width: 460px;
  padding: 56px 20px calc(var(--footer-h) + 40px);
  display:flex;
  flex-direction:column;
  align-items:center;
  position: relative;
}

.avatar{
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow:hidden;
  border: 2.5px solid rgba(255,255,255,0.55);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 6px rgba(255,255,255,0.06);
  background: #222;
  opacity:0;
  animation: rise .6s ease forwards;
}
.avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

h1{
  margin: 18px 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align:center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  opacity:0;
  animation: rise .6s ease forwards .05s;
}

.bio{
  margin: 0 0 30px;
  font-size: 14.5px;
  color: var(--text-dim);
  text-align:center;
  line-height:1.5;
  max-width: 320px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  opacity:0;
  animation: rise .6s ease forwards .1s;
}

.links{
  width:100%;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.btn{
  --x: 50%;
  --y: 50%;
  display:flex;
  align-items:center;
  gap: 14px;
  width:100%;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--text);
  text-decoration:none;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  opacity:0;
  animation: rise .5s ease forwards;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(180px circle at var(--x) var(--y), rgba(255,255,255,0.22), rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.btn:hover::before, .btn:active::before{ opacity: 1; }

.btn:active{ transform: scale(0.97); }

@media (hover:hover){
  .btn:hover{
    background: var(--card-bg-hover);
    border-color: rgba(255,255,255,0.32);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  }
}

.btn .icon{
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn .icon svg{ width:20px; height:20px; }

.btn .label{
  flex:1;
  display:flex;
  flex-direction:column;
  gap: 1px;
  min-width:0;
}
.btn .label small{
  font-weight:500;
  font-size: 12px;
  color: var(--text-dim);
}

.btn .chev{ flex:0 0 auto; opacity:0.55; }

.btn--youtube .icon{ color:#ff4d4d; }
.btn--instagram .icon{ color:#ff5ca8; }
.btn--tiktok .icon{ color:#4dd8ff; }
.btn--email .icon{ color:#ffd24d; }

/* ---------- Site footer (Impressum / Datenschutz) ---------- */

.site-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,12,0.55);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.site-footer a{
  color: rgba(255,255,255,0.75);
  text-decoration:none;
  font-weight: 600;
}
.site-footer a:hover{ color:#fff; text-decoration: underline; }
.site-footer .dot{ opacity:0.4; }
.site-footer .copyright{ margin-right: 4px; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */

.legal-wrap{
  width:100%;
  max-width:520px;
  padding: 48px 20px calc(var(--footer-h) + 40px);
}

.back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  margin-bottom:24px;
}
.back:hover{ color:#fff; }

.card{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.16);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-radius:20px;
  padding:28px 24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.card h1{
  font-size:22px;
  font-weight:800;
  letter-spacing:-0.02em;
  margin:0 0 20px;
  text-align:left;
  opacity:1;
  animation:none;
}

.card h2{
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(255,255,255,0.55);
  margin:22px 0 8px;
}
.card h2:first-of-type{ margin-top:0; }

.card p{
  margin:0 0 4px;
  font-size:15px;
  line-height:1.6;
  color:rgba(255,255,255,0.92);
}

a.inline{ color:#8fd0ff; text-decoration:underline; }

.placeholder{
  color:rgba(255,255,255,0.45);
  font-style:italic;
}

.legal-note{
  margin-top:26px;
  font-size:11.5px;
  color:rgba(255,255,255,0.4);
  text-align:center;
}

@media (max-width: 360px){
  h1{ font-size:20px; }
  .btn{ padding:14px 16px; font-size:14.5px; }
}
