.woty-core-container {
    --woty-core-color-outer: #d8c37d;
    --woty-core-color-inner: #9872d1;
    --woty-core-color-glow: #caa6ff;
    --woty-core-color-segment: rgba(185, 146, 255, 0.3);
    --woty-core-color-segment-hover: rgba(255, 210, 90, 0.65);
    --woty-core-color-label: #e5d7a2;
    --woty-core-color-center-label: #fef7da;
    --woty-core-color-highlight: #ffe5a1;
    --woty-core-color-segment-stroke: #d8c37d;
    --woty-core-label-font-family: "Cinzel", serif;
    --woty-core-label-font-size: 16px;
    --woty-core-label-font-weight: 400;
    --woty-core-label-letter-spacing: 0.5px;
    --woty-core-label-glow: rgba(0, 0, 0, 0.8);
    --woty-core-label-glow-radius: 4px;
    --woty-core-label-stroke-color: transparent;
    --woty-core-label-stroke-width: 0px;
    --woty-core-glow-soft: 6px;
    --woty-core-glow-strong: 18px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
}

.woty-core-wheel {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .woty-core-container {
        padding: 0 12px;
    }
}

.woty-core-outer-ring {
    stroke: var(--woty-core-color-outer);
    filter: url(#woty-core-glow-filter);
}

.woty-core-inner-ring {
    stroke: var(--woty-core-color-inner);
}

.woty-core-festival {
    cursor: pointer;
    --woty-segment-hover-color: var(--woty-core-color-segment-hover, rgba(255, 210, 90, 0.65));
    --woty-segment-highlight-color: var(--woty-core-color-highlight, #ffe5a1);
}

.woty-core-label {
    font-family: var(--woty-core-label-font-family, "Cinzel", serif);
    fill: var(--woty-core-color-label, #e5d7a2);
    font-size: var(--woty-core-label-font-size, 16px);
    font-weight: var(--woty-core-label-font-weight, 400);
    text-shadow: 0 0 var(--woty-core-label-glow-radius, 4px) var(--woty-core-label-glow, rgba(0, 0, 0, 0.8));
    stroke: var(--woty-core-label-stroke-color, transparent);
    stroke-width: var(--woty-core-label-stroke-width, 0px);
    paint-order: stroke fill;
    stroke-linejoin: round;
    pointer-events: none;
    letter-spacing: var(--woty-core-label-letter-spacing, 0.5px);
}

.woty-core-center-label {
    font-family: "Cinzel", serif;
    fill: var(--woty-core-color-center-label, #fef7da);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.woty-core-center-image {
    pointer-events: none;
    opacity: 0.95;
}

.woty-core-segment {
    fill: var(--woty-segment-base-fill, var(--woty-core-color-segment, rgba(185, 146, 255, 0.3)));
    stroke: var(--woty-core-color-segment-stroke, var(--woty-core-color-outer));
    stroke-width: 2;
    transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
    outline: none;
}

.woty-core-segment-image {
    pointer-events: none;
}

.woty-core-segment:hover,
.woty-core-segment:focus-visible {
    fill: var(--woty-segment-hover-color, var(--woty-core-color-segment-hover, rgba(255, 210, 90, 0.65)));
    stroke: var(--woty-segment-highlight-color, var(--woty-core-color-highlight, #ffe5a1));
    filter: drop-shadow(0 0 var(--woty-core-glow-soft, 6px) var(--woty-segment-highlight-color, var(--woty-core-color-glow)));
}

.woty-core-festival[data-glow-enabled="0"] .woty-core-segment:hover,
.woty-core-festival[data-glow-enabled="0"] .woty-core-segment:focus-visible {
    fill: var(--woty-segment-base-fill, var(--woty-core-color-segment, rgba(185, 146, 255, 0.3)));
    stroke: var(--woty-core-color-segment-stroke, var(--woty-core-color-outer));
    filter: none;
}

.woty-core-img {
    pointer-events: none;
    clip-path: circle(50%);
    border-radius: 50%;
    opacity: 1;
}

.woty-core-message {
    text-align: center;
    font-family: "Cinzel", serif;
}

#woty-core-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    max-width: calc(100% - 30px);
    transform: translate(-50%, -50%);
    background: #1a0f24;
    border: 3px solid #d8c37d;
    padding: 24px 20px 20px;
    z-index: 99999;
    color: #fef7da;
    font-family: "Cinzel", serif;
    display: none;
    box-shadow: 0 0 30px rgba(149, 108, 214, 0.65);
    border-radius: 12px;
}

#woty-core-popup h2 {
    margin-top: 0;
    color: #ffeac4;
    font-size: 22px;
}

#woty-core-popup img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    display: none;
}

#woty-core-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #d8c37d;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a0f24;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s ease;
}

#woty-core-popup-close:hover,
#woty-core-popup-close:focus-visible {
    transform: scale(1.05);
}
