#pdt-app {
    max-width: 900px;
    margin: 80px auto;
    font-family: Arial, sans-serif;
    text-align: center; /* 👉 zentriert alles */
}

#pdt-app h2,
#pdt-app h3,
#pdt-app h4,
#pdt-app p {
    text-align: center;
}

#pdt-quiz {
    margin-top: 40px;
}

.pdt-question {
    margin-bottom: 40px;
}

#pdt-app button {
    display: block;
    margin: 14px auto;
    padding: 14px 24px;
    min-width: 320px;
    cursor: pointer;
    border: none;
    background: #D90204; /* Hauptfarbe */
    color: #ffffff;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

#pdt-app button:hover {
    background: #f03a3c; /* leicht heller */
    transform: translateY(-2px); /* subtiler Premium-Effekt */
}

#pdt-app button:active {
    transform: translateY(0px);
}

.pdt-result-inner {
    text-align: center;
}

.pdt-meta {
    margin-top: 50px;
    font-style: italic;
    opacity: 0.8;
}