/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 100px 20px; /* Abstand oben für luftigere Optik */
}

/* Überschrift */
h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #ff9900;
    text-shadow: 2px 2px 5px #000;
}

/* Normale Absätze */
p {
    font-size: 1.2em;
    margin: 20px 0;
}

/* Normale Links */
a {
    color: #ffaa33;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
}

a:hover {
    color: #ffcc66;
    transform: scale(1.05);
}

/* Kleiner Button für "Klicke mich" */
.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffaa33;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 8px #ffaa33;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    margin-top: 20px;
}

.button-link:hover {
    background-color: #ffcc66;
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffcc66;
}

/* Pulsierender Haupt-Button "Spiele ein spiel" */
.button-highlight {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px #ff6600;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 30px;
}

.button-highlight:hover {
    background-color: #ff9933;
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff9933;
}

/* Pulsierende Animation für Hauptbutton */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff6600;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px #ff9933;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff6600;
    }
}
