:root {
  --bg: #0b0d10;
  --text: #e6e9ef;
  --muted: #aab1bb;
  --accent: #31d7a9;
  --panel: #13161a;
  --radius: 12px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


header {
    position: sticky;
    top: 0;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;   /* wir zentrieren die .container innen */
    
    padding: 22px 0;           /* etwas mehr Luft = „teurer“ Look */

    background: rgba(11,13,16,0.9);
    backdrop-filter: blur(6px);
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0)
    );
}

nav a { margin-left: 1rem; color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent); }

#hero {
  text-align: center; padding: 100px 20px;
  background: radial-gradient(circle at 70% 20%, rgba(49,215,169,.12), transparent 70%);
}

h1, h2 { color: var(--accent); }
.btn { display: inline-block; background: var(--accent); color: #0b0d10;
  padding: 10px 20px; border-radius: var(--radius); font-weight: 600;
  text-decoration: none; margin-top: 20px;
}

footer {
  text-align: center; padding: 20px; color: var(--muted);
  border-top: 1px solid #1e232b; font-size: 14px;
}

{
  scroll-margin-top: 80px;
}

html {
  scroll-padding-top: 80px;   /* Höhe deines Sticky-Headers + etwas Luft */
  /* optional: smooth scroll */
  scroll-behavior: smooth;
}
/* Coming-Soon Kartenstil */
.coming-soon {
  opacity: 0.65;
  filter: grayscale(35%);
  position: relative;
  transition: 0.3s ease;
}

.coming-soon:hover {
  opacity: 0.8;
  filter: grayscale(15%);
}

/* Tag-Stil */
.soon-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(49, 215, 169, 0.15);
  padding: 3px 6px;
  border-radius: 6px;
  margin-left: 6px;
}



