.woty-core-container {
    --woty-core-color-outer: #d8c37d;
    --woty-core-color-inner: #9872d1;
    --woty-core-color-glow: #caa6ff;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

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

.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-core-label {
    font-family: "Cinzel", serif;
    fill: #e5d7a2;
    font-size: 16px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    letter-spacing: 0.5px;
}

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

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

.woty-core-segment {
    fill: rgba(185, 146, 255, 0.3);
    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-image + .woty-core-segment {
    fill: rgba(255, 255, 255, 0.05);
}

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

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

.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);
}
