body {
    margin: 0;
    padding: 0;
    background: url('kartell.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    text-align: center;
}

.container {
    padding: 60px 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.claim {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    font-size: 1.1em;
    color: #ffffff;
    transition: all 0.4s ease;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    color: #ffffff;
}

.cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 10px 0 28px;
}

/* Akzent-Button */
.btn-accent{
  background:#15c7b9;
  border-color:#15c7b9;
  color:#002020;
  box-shadow: 0 0 10px rgba(21,199,185,0.25);
}
.btn-accent:hover{
  background:#10b2a6;
  border-color:#10b2a6;
  box-shadow:0 0 18px rgba(21,199,185,0.45);
}

/* Ghost bleibt im vorhandenen Stil; leicht stärkerer Hover-Kontrast */
.btn-ghost{
  background:transparent;
}
.btn-ghost:hover{
  background:rgba(255,255,255,0.18);
}

/* Mobile: Buttons etwas kompakter nebeneinander */
@media (max-width:600px){
  .cta-row .btn{ min-width: 44%; padding: 14px 16px; }
}
