/* ================= 投票模块美化 ================= */
.ih-poll .ih-form label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ih-poll .ih-form label:hover {
    background-color: #f0f8ff;
    border-color: #0073aa;
}
.ih-poll .ih-form input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    padding:0px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}
.ih-poll .ih-form input[type="radio"]:checked {
    border-color: #0073aa;
}
.ih-poll .ih-form input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #0073aa;
    border-radius: 50%;
}
.ih-poll .ih-submit-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.ih-poll .ih-submit-btn:hover {
    background-color: #005a87;
}

/* ================= 转盘模块样式 ================= */

/* 转盘外层容器 */
.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: visible;
}

/* 转盘画布 */
.wheel-container canvas {
    display: block;
    border-radius: 50%;
}

/* 倒三角指针：绝对悬浮在转盘正上方 */
.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #d63638;
    z-index: 999;
    pointer-events: none;
}

/* 抽奖按钮：无文字纯金色圆形开关 */
.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #E5C76B, #D4AF37);
    border: 3px solid #FFF;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 50;
    transition: all 0.2s ease;
}

.wheel-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(to bottom, #F0D484, #D4AF37);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* 抽奖结果区域 */
.ih-result {
    margin-top: 20px;
    text-align: center;
}

/* 通用模块间距 */
.ih-module {
    margin-bottom: 30px;
}
.poll-results strong {
    color: #000;
    font-weight: 600;
}