.mw-0ae46ef3-container {
    --bg-color: #0b0c10;
    --text-main: #f8f8ff;
    --gold: #d4af37;
    --teal: #008080;
    --purple: #4b0082;
    --purple-light: #8a2be2;
    --theme-color: var(--purple-light);
    
    background: radial-gradient(circle at center, var(--purple) 0%, var(--bg-color) 70%);
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-main);
    font-family: 'Cinzel', serif, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

.mw-0ae46ef3-container::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.mw-0ae46ef3-title {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.mw-0ae46ef3-intro {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #cccccc;
}

.mw-0ae46ef3-wheel-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 40px;
}

.mw-0ae46ef3-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--gold);
    z-index: 10;
    filter: drop-shadow(0 0 5px var(--gold));
}

.mw-0ae46ef3-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
    background: conic-gradient(
        #1a1a2e 0deg 30deg,
        #16213e 30deg 60deg,
        #1a1a2e 60deg 90deg,
        #16213e 90deg 120deg,
        #1a1a2e 120deg 150deg,
        #16213e 150deg 180deg,
        #1a1a2e 180deg 210deg,
        #16213e 210deg 240deg,
        #1a1a2e 240deg 270deg,
        #16213e 270deg 300deg,
        #1a1a2e 300deg 330deg,
        #16213e 330deg 360deg
    );
    box-shadow: 0 0 20px var(--theme-color), inset 0 0 20px var(--theme-color);
}

.mw-0ae46ef3-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    top: 0;
    left: 0;
    transform: rotate(calc(var(--i) * 30deg));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
}

.mw-0ae46ef3-segment span {
    position: absolute;
    right: -20px;
    bottom: 20px;
    transform: rotate(75deg);
    font-size: 11px;
    font-weight: 600;
    color: #e0e0e0;
    width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mw-0ae46ef3-spin-btn {
    background: linear-gradient(135deg, var(--teal), var(--purple-light));
    color: white;
    border: 2px solid var(--gold);
    padding: 15px 40px;
    font-size: 18px;
    font-family: inherit;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mw-0ae46ef3-spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

/* Modal */
.mw-0ae46ef3-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mw-0ae46ef3-modal.active {
    opacity: 1;
    visibility: visible;
}

.mw-0ae46ef3-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(5px);
}

.mw-0ae46ef3-modal-content {
    position: relative;
    background: var(--bg-color);
    border: 2px solid var(--gold);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px var(--purple-light);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s ease;
}

.mw-0ae46ef3-modal.active .mw-0ae46ef3-modal-content {
    transform: translateY(0) scale(1);
}

.mw-0ae46ef3-modal-main-title {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mw-0ae46ef3-modal-topic {
    font-size: 28px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.mw-0ae46ef3-modal-message {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #dddddd;
    margin-bottom: 30px;
}

.mw-0ae46ef3-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mw-0ae46ef3-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 25px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.mw-0ae46ef3-btn:hover {
    background: var(--gold);
    color: var(--bg-color);
}

@media (max-width: 768px) {
    .mw-0ae46ef3-wheel-wrapper {
        width: 280px;
        height: 280px;
    }
    .mw-0ae46ef3-segment span {
        right: -30px;
        font-size: 9px;
    }
    .mw-0ae46ef3-title { font-size: 26px; }
}