body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  position: relative; /* wichtig für Logo */
  background: url('lsc_bg.jpg') no-repeat center;
  background-size: cover;
  padding: 40px 20px 60px; /* weniger Platz oben */
  text-align: center;
}

/* ================= LOGO OBEN LINKS ================= */
.logo-title {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0;
}

.logo {
  width: 200px; /* etwas kompakter */
  height: auto;
  margin-bottom: 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.glow-logo {
  animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
  from {
    filter: drop-shadow(0 0 5px #facc15)
            drop-shadow(0 0 10px #00ffd5);
  }
  to {
    filter: drop-shadow(0 0 10px #facc15)
            drop-shadow(0 0 20px #00ffd5);
  }
}

/* ================= HERO TEXT ================= */
h1 {
  font-size: 2.8em;
  margin: 0 0 10px; /* kein Extra-Abstand nach oben */
  color: #facc15;
  text-shadow: 0 0 10px #facc15, 0 0 20px #facc15;
}

.subtitle {
  font-size: 1.3em;
  color: #00ffd5;
}

/* ================= MAIN ================= */
main {
  padding: 20px 10px; /* Seite weiter oben */
}

/* ================= TABELLEN ================= */
.table-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.table-block {
  flex: 1 1 49%;
  max-width: 780px;
  min-width: 540px;
  padding: 28px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 255, 150, 0.25);
  background: rgba(0, 0, 0, 0.6);
}

/* ================= TABLE ================= */
.table-block table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1f1f1f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

thead th {
  text-align: left;
  padding: 14px 16px;
  background-color: #111;
  color: #facc15;
  border-bottom: 2px solid #333;
  text-transform: uppercase;
  font-size: 0.95em;
  letter-spacing: 0.04em;
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #333;
}

tbody tr:hover {
  background-color: #222;
  transition: background 0.2s ease;
}

/* ================= PREIS ================= */
td.price {
  color: #8ae620;
  text-shadow:
    0 0 5px #8ae620,
    0 0 10px #8ae620,
    0 0 15px #66ff48;
}

/* ================= HEADER ================= */
.angebot-header {
  color: #facc15;
  font-size: 1.4em;
  margin-bottom: 14px;
  text-align: center;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #777;
  font-size: 0.8em;
}

/* ================= AUSVERKAUFT ================= */
.angebot-row {
  position: relative;
  overflow: hidden;
}

.angebot-row.ausverkauft {
  background-color: rgba(0, 0, 0, 0.6);
  color: #999;
}

.angebot-row.ausverkauft .price {
  color: #5f5;
}

.stempel-hintergrund {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.stempel-hintergrund img {
  max-width: 150px;
  height: auto;
}

/* ================= ANIMATION ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
