:root {
  --bg: #0a0706;
  --bg-alt: #161010;
  --panel: rgba(255, 255, 255, 0.04);
  --border: #332420;
  --text: #f5efe9;
  --text-dim: #a89a92;
  --accent: #e6392b;      /* Rot, wie der Logo-Schriftzug */
  --accent-glow: #ffb020; /* Orange/Gold, wie Augen & Hörner */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

body {
  background-image:
    radial-gradient(circle at 20% 0%, rgba(230, 57, 43, 0.14), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(255, 176, 32, 0.08), transparent 40%);
}

.display-font {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a { color: var(--accent-glow); }

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Hero */
header.hero {
  padding: 48px 0 40px;
  text-align: center;
}

.logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 18px rgba(255, 176, 32, 0.35));
}

.brand {
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--text);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.tagline {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.section-intro {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 14px;
}

/* Sections */
section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

h2.section-title {
  font-size: 13px;
  color: var(--accent-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.bio p {
  color: var(--text);
  max-width: 640px;
}

.placeholder {
  color: var(--text-dim);
  font-style: italic;
}

/* Link cards */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.link-card {
  display: block;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, transform .15s ease;
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.link-card .label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.link-card .value {
  font-size: 15px;
  color: var(--text);
}

/* Socials */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
}

.social-pill.filled {
  border-color: var(--accent);
  background: rgba(230, 57, 43, 0.12);
  color: var(--text);
}

footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
