body {
    font-family: 'Reddit Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Delius', cursive;
}

details {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f4ea, #d4edda);
    transition: all 0.3s ease;
    border: 1px solid #c3e6cb;
	text-align: center;
}

details ul {
    list-style: none;
    padding-left: 0;
}

details li::before {
    content: "✓ ";
    color: #3a7d44;
    font-weight: bold;
    margin-right: 6px;
}

details img {
    max-width: 100%;
    height: 600px;
    border-radius: 8px;
    margin-top: 10px;
}

details p {
    font-size: 1.6rem;
    font-weight: 600;

    margin: 0;
    padding: 18px 20px;

    border: 2px solid #8a8a8a;
    border-radius: 8px;
    background-color: #e6e6e6;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 70px;
}

summary {
    list-style: none;
    padding: 16px 18px;
    font-size: 1.7rem;
    font-family: 'Delius', cursive;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: #1e4620;
}

summary:hover {
    color: #2e6b34;
}

/* Standard-Pfeil entfernen */
summary::-webkit-details-marker {
    display: none;
}

/* Eigener Pfeil */
summary::after {
    content: "▸";
    position: absolute;
    right: 18px;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

/* Pfeil dreht sich beim Öffnen */
details[open] summary::after {
    transform: rotate(90deg);
}

/* Inhalt */
details > *:not(summary) {
    padding: 0 18px 16px 18px;
    color: #2f5233;
}

/* Geöffnet */
details[open] {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    box-shadow: 0 6px 18px rgba(0, 80, 40, 0.08);
}