/* Lottery Wheel Styles - 幸运转盘 */
.wheel-container {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto 30px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.1);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    background: #fff;
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8e64 0%, #ff9d7a 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.wheel::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    z-index: 6;
}

.wheel-item {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: right bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
}

.wheel-item i {
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wheel-item span {
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid #ff8e64;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: -55px;
    left: -18px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff8e64 0%, #ff9d7a 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 142, 100, 0.4);
    border: 3px solid #fff;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .wheel {
        border-width: 10px;
    }
    
    .wheel::before {
        width: 50px;
        height: 50px;
    }
    
    .wheel::after {
        font-size: 20px;
    }
    
    .wheel-pointer {
        border-left-width: 25px;
        border-right-width: 25px;
        border-top-width: 50px;
    }
    
    .wheel-pointer::after {
        top: -45px;
        left: -15px;
        width: 30px;
        height: 30px;
    }
    
    .wheel-item {
        padding: 12px 8px;
    }
    
    .wheel-item i {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .wheel-item span {
        font-size: 11px;
    }
}
