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

@font-face {
  font-family: "Obit";
  src: url("assets/obit.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  min-height: 100vh;
  background-color: #0c0c0c;
  color: #fff;
  font-family: "Obit", system-ui, -apple-system, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* bg.png halbtransparent über der Hintergrundfarbe */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/bg.png") center / cover no-repeat;
  opacity: 0.15; /* Transparenz anpassen */
  z-index: -1;
}

.coming-soon {
  text-align: center;
  padding: 2rem;
}

.logo {
  width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 2.3rem;
  border-radius: 7px;
  font-family: inherit;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FCCE28;
  position: relative;
  /* Glow unten links, fadet nach oben/rechts aus */
  background:
    radial-gradient(circle at 0% 100%, rgba(252, 206, 40, 0.30) 0%, rgba(252, 206, 40, 0.10) 35%, rgba(252, 206, 40, 0) 65%),
    #1f1f1f;
  transition: transform 0.15s ease, filter 0.15s ease;
}

/* Outline nur unten links an der Ecke, fadet in beide Richtungen aus */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background:
    radial-gradient(circle 10px at 0% 100%, #FCCE28 0%, rgba(252, 206, 40, 0.55) 50%, rgba(252, 206, 40, 0) 100%),
    linear-gradient(to right, rgba(252, 206, 40, 0.85), rgba(252, 206, 40, 0) 55%) bottom / 100% 2px no-repeat,
    linear-gradient(to top, rgba(252, 206, 40, 0.85), rgba(252, 206, 40, 0) 55%) left / 2px 100% no-repeat;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Text mit Gradient: oben hell, unten dunkler */
.btn-label {
  background: linear-gradient(180deg, #FFF3B0 0%, #FCCE28 45%, #C79510 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn svg {
  width: 20px;
  height: 20px;
}


p {
  margin-top: 0.75rem;
  opacity: 0.75;
}

/* Linie ganz unten + Glow der nach oben bis unter die Buttons faded */
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(
    to top,
    rgba(255, 202, 44, 0.30) 0%,
    rgba(255, 202, 44, 0.16) 35%,
    rgba(255, 202, 44, 0.05) 65%,
    rgba(255, 202, 44, 0) 100%
  );
  border-bottom: 3px solid #ffc400;
  pointer-events: none;
  z-index: 10;
}
