:root {
  --red: #D00000;
  --red-bright: #ff2020;
  --yellow: #FFD700;
  --yellow-dim: #c9a800;
  --blue: #0080FF;
  --dark: #080c10;
  --dark2: #0e1520;
  --dark3: #14202e;
  --light: #FFFFFF;
  --muted: #8ba0b4;
}

/* GLOBAL */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, .hero-badge, .section-label, .footer-logo {
  font-family: 'Oswald', sans-serif;
}

/* DISCLAIMER BANNER */
.disclaimer-banner {
  background: #1a0000;
  border-bottom: 2px solid var(--red);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  text-align: center;
  padding: 12px 24px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  position: relative;
  z-index: 100;
}

.disclaimer-banner strong {
  color: #ff6060;
}

.disclaimer-inline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,0,0,0.55) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 860px;
  padding: 20px 24px;
  animation: fadeUp 1s ease-out both;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(208,0,0,0.55);
}

.glow-title {
  font-size: 5.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--yellow);
  text-shadow:
    0 0 30px rgba(255,215,0,0.55),
    0 0 60px rgba(255,215,0,0.25);
  letter-spacing: 2px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.25rem;
  margin-top: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 28px auto;
}

/* SOCIAL */
.social-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease-out both;
}

.social {
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(4px);
}

.social:hover {
  transform: translateY(-3px);
}

.social.mail {
  background: rgba(0, 128, 255, 0.85);
  border: 1px solid rgba(0,128,255,0.5);
  box-shadow: 0 4px 20px rgba(0,128,255,0.3);
}

.social.mail:hover {
  box-shadow: 0 6px 28px rgba(0,128,255,0.6);
}

.social.insta {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 4px 20px rgba(214,41,118,0.35);
}

.social.insta:hover {
  box-shadow: 0 6px 28px rgba(214,41,118,0.65);
}

.social.tiktok {
  background: #0e0e0e;
  border: 1px solid #00f2ea;
  box-shadow: 0 4px 20px rgba(0,242,234,0.2);
}

.social.tiktok:hover {
  box-shadow: 0 6px 28px rgba(0,242,234,0.5);
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}

/* INFO */
.info {
  padding: 100px 40px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 14px;
}

.info h2 {
  font-size: 2.8rem;
  color: var(--yellow);
  margin: 0 0 30px;
  font-weight: 700;
}

.info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.info strong {
  color: #fff;
}

.info .highlight {
  font-weight: 600;
  color: var(--yellow);
  font-size: 1.05rem;
}

/* STATS */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 60px 40px;
  background: linear-gradient(180deg, transparent, rgba(208,0,0,0.06), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
  text-align: center;
  padding: 10px 48px;
  flex: 0 0 auto;
}

.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.35);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 8px;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features .section-label {
  margin-bottom: 12px;
}

.features h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
  color: var(--yellow);
  max-width: 600px;
}

.features-subtitle {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  margin: 0 auto 60px;
  max-width: 520px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid .feature:nth-child(4),
.feature-grid .feature:nth-child(5) {
  grid-column: auto;
}

/* Letzte 2 cards zentrieren wenn 5 items */
.feature-grid {
  justify-items: stretch;
}

@supports (grid-template-columns: subgrid) {
  /* noop – support check */
}

/* 5-card centering trick: wrap second row */
.feature-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-row .feature {
  flex: 0 1 340px;
}

.feature {
  background: linear-gradient(145deg, #101820, #0d1520);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 24px rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.15);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature h3 {
  color: var(--yellow);
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.feature p {
  opacity: 0.75;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* FOOTER */
.footer {
  padding: 50px 40px 40px;
  background: #060a0e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 16px rgba(255,215,0,0.3);
}

.footer p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  margin: 0 0 18px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* MOBILE */
@media (max-width: 768px) {
  .glow-title { font-size: 3.2rem; }
  .hero-sub { font-size: 1rem; }
  .info h2, .features h2 { font-size: 2rem; }
  .social-buttons { flex-direction: column; align-items: center; }
  .stat-sep { display: none; }
  .stat-item { padding: 12px 28px; }
  .features { padding: 70px 20px; }
  .info { padding: 70px 24px; }
  .feature-row { flex-direction: column; align-items: center; }
  .feature-row .feature { flex: 0 1 100%; width: 100%; max-width: 420px; }
}

/* GLOBAL */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 22vh auto 0;
  padding: 20px;
  animation: fadeIn 1.2s ease-out;
}

.glow-title {
  font-size: 4.5rem;
  margin: 0;
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.hero-sub {
  font-size: 1.5rem;
  margin-top: 10px;
  opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 35px;
}

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--red);
  color: var(--light);
  box-shadow: 0 0 12px rgba(208,0,0,0.6);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255,0,0,0.9);
}

/* SOCIAL */
.social-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: var(--light);
  transition: 0.25s ease;
}

.social.mail {
  background: var(--blue);
}

.social.insta {
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}

.social.tiktok {
  background: #000;
  border: 2px solid #00f2ea;
}

/* INFO */
.info {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.info h2 {
  font-size: 2.8rem;
  color: var(--yellow);
}

.info p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.info .highlight {
  font-weight: 700;
  color: var(--yellow);
}

/* FEATURES */
.features {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: var(--yellow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
  transition: 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(255,215,0,0.35);
}

.feature h3 {
  color: var(--yellow);
  margin-top: 0;
}

.feature p {
  opacity: 0.9;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  background: #111;
  color: #888;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .glow-title { font-size: 2.8rem; }
  .hero-sub { font-size: 1.1rem; }
  .social-buttons { flex-direction: column; }
}