* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff6a00;
  --white: #6b6b6b;
  --muted: rgba(255,255,255,0.65);
}

body {
  background: #6b6b6b;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
}

/* INTRO */
.intro {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.logo span {
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255,106,0,0.6);
}

/* LANDING */
.landing {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE */
.content h1 {
  font-size: 4.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  text-shadow: 0 0 36px rgba(255,106,0,0.55);
}

/* ROLES */
.roles {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.6px;
}

.roles span {
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}

/* SOCIALS */
.socials {
  margin-top: 22px;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

.socials a {
  font-size: 1.9rem;
  color: #ffffff;
  opacity: 1;
  transition: 0.25s ease;
  text-decoration: none;

  /* macht sie sichtbar auf grau */
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}

.socials a:hover {
  color: #ff6a00;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(255,106,0,0.45)) drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}


/* CODE CTA */
.code {
  margin-top: 28px;
}

.code p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.shop-btn {
  display: inline-block;
  padding: 12px 34px;
  border-radius: 30px;
  background: var(--orange);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.shop-btn:hover {
  background: #ff8126;
  box-shadow: 0 0 30px rgba(255,106,0,0.55);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .logo span { font-size: 3.2rem; }
  .content h1 { font-size: 2.9rem; }
  .roles { font-size: 0.9rem; }
  .socials a { font-size: 1.6rem; }
}
