/* Darkmode */
@media (prefers-color-scheme: dark) {
    .woty-core-container {
        filter: brightness(0.85);
    }
    #woty-core-popup {
        background: #0f0a15;
        border-color: #ceb878;
    }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .woty-core-wheel {
        transform: none;
    }
}

@media (max-width: 500px) {
    .woty-core-label {
        font-size: 14px;
    }
}

/* Highlight aktuelles Fest */
@keyframes woty-core-segment-pulse {
    0%,
    100% {
        fill: var(--woty-segment-base-fill, var(--woty-core-color-segment, rgba(185, 146, 255, 0.3)));
    }
    50% {
        fill: var(--woty-segment-pulse-color,
            var(--woty-core-pulse-color,
                var(--woty-segment-highlight-color, var(--woty-core-color-highlight, #ffe5a1))
            )
        );
    }
}

.woty-core-segment.woty-core-highlight {
    animation: woty-core-segment-pulse var(--woty-core-pulse-duration, 1400ms) ease-in-out infinite;
}
