/* Lottery Slot Styles - 老虎机 */
.slot-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px;
    max-width: 420px;
    padding: 20px;
    background: linear-gradient(135deg, #ffe5de 0%, #ffb3a0 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.slot-reel {
    width: 110px;
    height: 180px;
    background: linear-gradient(135deg, #ff8e64 0%, #ff9d7a 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.slot-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 2;
}

.slot-reel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.slot-reel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.1s;
}

.slot-item {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe5de 100%);
    border-bottom: 2px solid rgba(255, 142, 100, 0.1);
    transition: background 0.3s;
}

.slot-item:last-child {
    border-bottom: none;
}

.slot-item:hover {
    background: linear-gradient(135deg, #ffe5de 0%, #ffffff 100%);
}

/* 结果模态框按钮容器 */
.result-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.result-buttons .lottery-btn {
    flex: 0 0 auto;
    min-width: 120px;
    height: 56px !important;
    min-height: 56px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    box-sizing: border-box;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .slot-container {
        max-width: 320px;
        gap: 10px;
        padding: 15px;
        border-radius: 18px;
    }
    
    .slot-reel {
        width: 90px;
        height: 150px;
        border-radius: 14px;
    }
    
    .slot-item {
        height: 150px;
        font-size: 52px;
    }
    
    .result-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .result-buttons .lottery-btn {
        width: 100%;
        min-width: unset;
    }
    
    .slot-prize-info {
        padding: 15px;
    }
    
    .prize-info-item {
        gap: 10px;
    }
    
    .prize-icon {
        font-size: 32px;
    }
    
    .prize-title {
        font-size: 14px;
    }
    
    .prize-text {
        font-size: 12px;
    }
}

/* 奖品说明区域 */
.slot-prize-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ffe5de 0%, #ffb3a0 100%);
    border-radius: 16px;
}

.prize-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.prize-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 142, 100, 0.2);
}

.prize-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prize-desc {
    flex: 1;
}

.prize-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.prize-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
