body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d; /* Dunkler Hintergrund für Dramatik */
    color: #fff;
    text-align: center;
    padding: 20px;
}

.jackpot-container {
    max-width: 600px;
    margin: 50px auto;
    border: 5px solid #ff0000; /* Aggressiver Rand */
    padding: 30px;
    background: #1a1a1a;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
}

.jackpot-headline {
    color: #ffcc00; /* Goldgelb */
    font-size: 2.2em;
    animation: blinker 0.7s linear infinite; /* Simuliert das Blinken */
    text-shadow: 0 0 10px #ffcc00;
}

@keyframes blinker {
    50% { opacity: 0.2; }
}

.sub-text {
    font-size: 1.1em;
    margin-top: 15px;
    font-weight: bold;
}

.target-headline {
    color: #00ff40; /* Grün für Gewinn */
    margin: 20px 0 30px;
    font-size: 1.5em;
    border-top: 2px dashed #333;
    border-bottom: 2px dashed #333;
    padding: 10px 0;
}

.cta-button {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 18px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscription-button {
    background-color: #ff0000; /* Aggressive Farbe für Abo */
    color: #fff;
}

.subscription-button:hover {
    background-color: #cc0000;
}

.instant-button {
    background-color: #555;
    color: #fff;
    font-size: 0.9em;
    padding: 12px 20px;
}

.payment-section {
    padding: 40px 0;
}
.disclaimer {
    font-size: 0.8em;
    color: #777;
    margin-top: 20px;
} 