/**
 * 幸运大转盘样式 - 班级宠物系统整合版
 */

/* ========== 模态框基础 ========== */
.lucky-wheel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a6c, #2c3e50, #4a235a);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lucky-wheel-modal.active {
    opacity: 1;
    visibility: visible;
}

.lucky-wheel-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
    z-index: -1;
}

.lucky-wheel-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ========== 头部 ========== */
.lucky-wheel-header {
    text-align: center;
    padding: 15px 20px;
    position: relative;
}

.lucky-wheel-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    text-shadow: 0 0 15px rgba(0, 195, 255, 0.7);
    background: linear-gradient(90deg, #00dbde, #fc00ff, #00dbde);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: wheelTitleGlow 3s infinite alternate;
    letter-spacing: 2px;
    margin: 0;
}

@keyframes wheelTitleGlow {
    0% { text-shadow: 0 0 15px rgba(0, 195, 255, 0.7); }
    100% { text-shadow: 0 0 25px rgba(255, 0, 230, 0.8), 0 0 35px rgba(255, 0, 230, 0.5); }
}

.lucky-wheel-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lucky-wheel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* ========== 内容区域 ========== */
.lucky-wheel-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 80px;
}

.wheel-section {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: min(75vw, 75vh);
    max-height: min(75vw, 75vh);
    aspect-ratio: 1 / 1;
}

#luckyWheelCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow:
        0 0 50px rgba(0, 195, 255, 0.3),
        0 0 100px rgba(0, 195, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transition: transform 0s linear;
    transform: rotate(0deg);
}

.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 5%;
    height: 7.5%;
    background: linear-gradient(45deg, #ff0000, #ff6a00);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    z-index: 10;
    border-radius: 0 0 5px 5px;
}

/* ========== 转盘悬浮按钮组 ========== */
.lucky-wheel-fab-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.wheel-fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.wheel-fab-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.wheel-fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.wheel-fab-btn:hover::after {
    left: 100%;
    top: 100%;
}

.wheel-fab-btn:active {
    transform: scale(0.95);
}

.wheel-spin-btn {
    background: linear-gradient(135deg, #00c853, #64dd17);
    z-index: 2;
}

.wheel-spin-btn.stop-mode {
    background: linear-gradient(135deg, #ff3d00, #d50000);
    animation: wheelPulseRed 2s infinite;
}

@keyframes wheelPulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 61, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

.wheel-setting-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

/* ========== 班级宠物系统悬浮按钮 ========== */
.lucky-wheel-pet-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wheelPetFabPulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1001;
}

@keyframes wheelPetFabPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 6px 25px rgba(102, 126, 234, 0.55), 0 8px 30px rgba(0, 0, 0, 0.25); }
}

.lucky-wheel-pet-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5), 0 12px 35px rgba(0, 0, 0, 0.25);
    animation: none;
}

.lucky-wheel-pet-fab:active {
    transform: scale(0.95);
}

.lucky-wheel-pet-fab-icon {
    font-size: 26px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
    transition: transform 0.25s ease;
}

.lucky-wheel-pet-fab:hover .lucky-wheel-pet-fab-icon {
    transform: scale(1.15);
}

.lucky-wheel-pet-fab-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background: rgba(30, 41, 59, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lucky-wheel-pet-fab-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 5px 5px 0;
    border-style: solid;
    border-color: transparent rgba(30, 41, 59, 0.95) transparent transparent;
}

.lucky-wheel-pet-fab:hover .lucky-wheel-pet-fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* ========== 设置面板 ========== */
.wheel-controls-section {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: rgba(30, 30, 60, 0.98);
    padding: 25px;
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(0, 195, 255, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1100;
}

.wheel-controls-section.open {
    right: 0;
}

.wheel-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 195, 255, 0.2);
    padding-bottom: 15px;
}

.wheel-section-title {
    font-size: 1.5rem;
    text-align: center;
    color: #00dbde;
    text-shadow: 0 0 10px rgba(0, 219, 222, 0.5);
    margin: 0;
}

.wheel-subtitle {
    font-size: 1.1rem;
    color: #00dbde;
    margin: 15px 0 10px;
    text-shadow: 0 0 5px rgba(0, 219, 222, 0.3);
}

.wheel-panel-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.wheel-panel-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ========== 输入组 ========== */
.wheel-input-group {
    margin-bottom: 20px;
}

.wheel-input-group textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    background: rgba(10, 15, 30, 0.7);
    border: 1px solid rgba(0, 195, 255, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 10px;
    font-family: inherit;
}

.wheel-input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wheel-input-group textarea:focus {
    outline: none;
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}

.wheel-button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.wheel-btn {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: inherit;
}

.wheel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.wheel-btn:active {
    transform: translateY(1px);
}

.wheel-btn.download {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}

.wheel-btn.clear {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

.wheel-btn.example {
    background: linear-gradient(45deg, #7b4397, #dc2430);
}

.wheel-btn.style {
    background: linear-gradient(45deg, #8a2be2, #9370db);
}

.wheel-btn.help {
    background: linear-gradient(45deg, #11998e, #38ef7d);
}

.wheel-btn.reset {
    background: linear-gradient(45deg, #cb2d3e, #ef473a);
    color: #fff;
}

/* ========== 文件上传区 ========== */
.wheel-file-drop-area {
    border: 2px dashed rgba(0, 195, 255, 0.5);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
    background: rgba(10, 15, 30, 0.3);
}

.wheel-file-drop-area:hover,
.wheel-file-drop-area.dragover {
    background: rgba(0, 195, 255, 0.1);
    border-color: #00c3ff;
}

.wheel-file-drop-area p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.wheel-file-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 195, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
    color: white;
}

.wheel-file-label:hover {
    background: rgba(0, 195, 255, 0.4);
}

#wheelFileInput {
    display: none;
}

/* ========== 库存设置 ========== */
.wheel-stock-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.wheel-stock-header {
    display: flex;
    justify-content: space-between;
    color: #00c6ff;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    padding-right: 15px;
}

#wheelStockList {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

#wheelStockList::-webkit-scrollbar {
    width: 6px;
}

#wheelStockList::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

#wheelStockList::-webkit-scrollbar-thumb {
    background: rgba(0, 195, 255, 0.5);
    border-radius: 3px;
}

.wheel-stock-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
}

.wheel-stock-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.wheel-stock-input {
    width: 60px;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(0, 195, 255, 0.4);
    color: white;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.wheel-stock-input:focus {
    outline: none;
    border-color: #00c6ff;
}

/* ========== 结果框 ========== */
#wheelResultBox {
    height: 50px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

#wheelResultText {
    text-align: center;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

/* ========== 控制区 ========== */
.wheel-spin-controls {
    margin-top: 10px;
}

.wheel-control-row {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.9);
}

.wheel-control-row label {
    margin-right: 15px;
    font-size: 0.95rem;
    white-space: nowrap;
    min-width: 80px;
}

.wheel-control-row input[type="range"] {
    flex: 1;
    height: 10px;
    background: rgba(10, 15, 30, 0.7);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.wheel-control-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00c6ff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
}

/* 开关样式 */
.wheel-toggle {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 34px;
}

.wheel-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wheel-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222;
    transition: .4s;
    border-radius: 34px;
}

.wheel-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.wheel-toggle input:checked + .wheel-toggle-slider {
    background-color: #00c6ff;
}

.wheel-toggle input:checked + .wheel-toggle-slider:before {
    transform: translateX(26px);
}

.wheel-style-panel {
    margin-top: 15px;
}

.wheel-style-panel .wheel-btn {
    width: 100%;
}

/* ========== 结果弹窗 ========== */
.wheel-result-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wheel-result-modal.active {
    opacity: 1;
    visibility: visible;
}

.wheel-modal-content {
    background: linear-gradient(120deg, #1a2a6c, #2c3e50, #4a235a);
    padding: 40px 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.5), 0 0 50px rgba(0, 195, 255, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 90%;
    width: 500px;
    border: 1px solid rgba(0, 195, 255, 0.3);
}

.wheel-result-modal.active .wheel-modal-content {
    transform: scale(1);
}

.wheel-modal-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.wheel-modal-result {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    margin-bottom: 30px;
    animation: wheelResultPulse 2s infinite alternate;
}

@keyframes wheelResultPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.wheel-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.wheel-modal-btn {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.wheel-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.6);
}

.wheel-modal-btn.continue {
    background: linear-gradient(45deg, #00c853, #64dd17);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
}

.wheel-modal-btn.back {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    box-shadow: 0 5px 15px rgba(255, 66, 44, 0.4);
}

/* ========== 帮助弹窗 ========== */
.wheel-help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.wheel-help-modal.active {
    opacity: 1;
    visibility: visible;
}

.wheel-help-content {
    background: #2c3e50;
    width: 600px;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 195, 255, 0.3);
    display: flex;
    flex-direction: column;
    animation: wheelSlideUp 0.3s ease;
}

@keyframes wheelSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.wheel-help-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    border-radius: 12px 12px 0 0;
}

.wheel-help-header h3 {
    margin: 0;
    color: #00dbde;
    font-size: 1.4rem;
}

.wheel-help-body {
    padding: 25px;
    overflow-y: auto;
    text-align: left;
    line-height: 1.6;
    color: #ddd;
}

.wheel-help-section {
    margin-bottom: 20px;
}

.wheel-help-section h4 {
    color: #fff;
    margin-bottom: 8px;
    border-left: 4px solid #00c6ff;
    padding-left: 10px;
    font-size: 1.1rem;
}

.wheel-help-section p,
.wheel-help-section ul {
    margin-left: 14px;
    font-size: 0.95rem;
}

.wheel-help-section ul {
    padding-left: 20px;
}

.wheel-help-section li {
    margin-bottom: 5px;
}

/* ========== 响应式适配 ========== */
@media (max-width: 768px) {
    .lucky-wheel-header h1 {
        font-size: 1.5rem;
    }

    .lucky-wheel-close {
        top: 10px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .lucky-wheel-content {
        padding: 10px 15px 100px;
    }

    .wheel-controls-section {
        width: 100%;
        right: -100%;
    }

    .wheel-controls-section.open {
        right: 0;
    }

    /* 移动端悬浮按钮样式已移到上面的整合样式中 */

    /* 移动端悬浮按钮整合到按钮组中，统一缩小 */
    .lucky-wheel-fab-group {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .lucky-wheel-pet-fab {
        width: 50px;
        height: 50px;
    }

    .lucky-wheel-pet-fab-icon {
        font-size: 22px;
    }

    .wheel-fab-btn {
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
    }

    .lucky-wheel-pet-fab-tooltip {
        display: none;
    }

    /* 设置面板按钮保持两列显示 */
    .wheel-button-group {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wheel-btn {
        padding: 8px 6px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .wheel-modal-content {
        padding: 30px 25px;
        width: 90%;
    }

    .wheel-modal-title {
        font-size: 1.5rem;
    }

    .wheel-modal-result {
        font-size: 1.8rem;
    }

    /* 结果弹窗按钮保持横向排列，更精致小巧 */
    .wheel-modal-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .wheel-modal-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
        border-radius: 20px;
        flex: 1;
        max-width: 120px;
    }

    .wheel-help-content {
        max-height: 85vh;
    }

    .wheel-help-body {
        padding: 20px;
    }
}

/* 隐藏滚动条但保持滚动功能 */
.wheel-controls-section::-webkit-scrollbar {
    width: 8px;
}

.wheel-controls-section::-webkit-scrollbar-track {
    background: rgba(10, 15, 30, 0.5);
    border-radius: 4px;
}

.wheel-controls-section::-webkit-scrollbar-thumb {
    background: rgba(0, 195, 255, 0.5);
    border-radius: 4px;
}

.wheel-controls-section::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 195, 255, 0.8);
}

/* 防止文本被选中 */
.lucky-wheel-modal * {
    user-select: none;
}

.lucky-wheel-modal input,
.lucky-wheel-modal textarea {
    user-select: text;
}
